如何在 php 中的 Google Adwords API 中设置多个 ClientCustomerId?
Posted
技术标签:
【中文标题】如何在 php 中的 Google Adwords API 中设置多个 ClientCustomerId?【英文标题】:How to set multiple ClientCustomerId in Google Adwords API in php? 【发布时间】:2018-08-29 15:24:15 【问题描述】:我在一个主账户下有多个客户 ID(即 xxx-xxx-xxxx)。我可以使用一个帐户 id (xxx-xxx-xxxx) 访问 API 并获取 API 响应。 但在我当前的应用程序中,我需要获取多个帐户 ID 的 API 响应(即 xxx-xxx-xxxx、yyy-yyy-yyyy)。其实我是想避免多账号ID循环中的API调用。
现在在我的 php 库中,我可以设置一个帐户,即
$user = new AdWordsUser();
$user->SetClientCustomerId($clientId);
有什么方法可以让我在google adwords 中通过一个API 调用设置多个帐户并获取数据?
【问题讨论】:
【参考方案1】:SetClientCustomerId($clientId);方法只接受 1 个参数(1 个客户端 ID),所以不,您不能在一个 API 调用中设置多个帐户并获取数据。
【讨论】:
以上是关于如何在 php 中的 Google Adwords API 中设置多个 ClientCustomerId?的主要内容,如果未能解决你的问题,请参考以下文章
Adparams 如何在 Google Adwords PHP api 中工作
如何获取 Google Adwords api 的 developerToken?
如何在沙盒中使用 google adwords api? [关闭]
使用 AdWords 脚本,如何将 Merchant Center 中的 Feed 替换为 Google Drive 中的 .txt 文件?