借助 Google Ads 脚本中的 AdsManagerApp
类,您可以管理在经理账号下关联的账号。您可以通过单个脚本管理所有广告客户账号,而无需为每个账号分别创建脚本。
检索账号列表
您可以使用 accounts
方法检索经理账号下的账号,例如:
const accountSelector = AdsManagerApp.accounts()
.withCondition('customer_client.descriptive_name = "My Account"');
const accountIterator = accountSelector.get();
可检索的账号有一些限制:
- 如果您有多级层次结构,则无法检索经理账号。只能选择客户账号。
- 默认情况下,系统不会返回已关闭、已取消和已暂停的账号。您
可以通过调用
withCondition
指定另一个 “customer_client.status
”过滤条件。
accounts
调用可检索
经理账号层次结构您可以使用
withLimit
方法的
ManagedAccountSelector
类来限制脚本检索的账号数量。另一个
方法是使用
withIds
方法:
// Hyphens in the account ID are optional.
const accountSelector = AdsManagerApp.accounts()
.withIds(['123-456-7890', '234-567-8901', '345-678-9012']);
处理客户账号
检索到客户账号后,您可以使用迭代器的 hasNext
和 next
方法对其进行迭代。您需要使用
select
方法将执行环境切换到客户账号。选择一个
之后的 API 调用将应用于该客户账号,直到您
明确选择其他账号:
// Keep track of the manager account for future reference.
const managerAccount = AdsApp.currentAccount();
// Select your accounts
const accountIterator = AdsManagerApp.accounts()
// ... Write some logic here to select the accounts you want using
// withCondition or withIds
// Iterate through the list of accounts
for (const account of accountIterator) {
// Select the client account.
AdsManagerApp.select(account);
// Select campaigns under the client account
const campaignIterator = AdsApp.campaigns().get();
// Operate on client account
...
}
同时处理多个账号
利用 Google Ads 脚本,您可以使用
executeInParallel
方法的
ManagedAccountSelector
类。executeInParallel
方法具有以下签名:
function executeInParallel(functionName, optionalCallbackFunctionName, optionalInput);
executeInParallel
方法会对 ManagedAccountSelector
匹配的每个 ManagedAccount
执行 functionName
指定的函数。处理完所有账号后,系统会执行回调函数(如果由 optionalCallbackFunctionName
指定),并将 ExecutionResult
对象列表作为参数传递给该函数,以便进行进一步处理。下面显示了
如下:
function main() {
const accountSelector = AdsManagerApp.accounts()
.withLimit(50)
.withCondition('customer_client.currency_code = "USD"');
accountSelector.executeInParallel("processClientAccount", "afterProcessAllClientAccounts");
}
function processClientAccount() {
const clientAccount = AdsApp.currentAccount();
// Process your client account here.
...
// optionally, return a result, as text.
return "";
}
function afterProcessAllClientAccounts(results) {
for (const result of results) {
// Process the result further
...
}
}
functionName
指定的函数可以选择接受字符串参数 (optionalInput
)。此参数可用于将其他参数传递给 executeInParallel
调用的所有并行方法:
function main() {
const accountSelector = AdsManagerApp.accounts().withIds([1234567890, 3456787890]);
const sharedParameter = "INSERT_SHARED_PARAMETER_HERE";
accountSelector.executeInParallel("processClientAccount", null, sharedParameter);
}
function processClientAccount(sharedParameter) {
// Process your client account here.
...
}
如果您想传递一个包含
特定于账号的设置,您可以先使用
JSON.stringify
方法:
function main() {
...
const accountFlags = {
'1234567890': {
'label': 'Brand 1 campaigns',
},
'3456787890': {
'label': 'Brand 2 campaigns',
}
};
accountSelector.executeInParallel("processClientAccount", null,
JSON.stringify(accountFlags));
...
}
function processClientAccount(sharedParameter) {
const accountFlags = JSON.parse(sharedParameter);
// Process your client account here.
...
}
functionName
指定的函数也可以返回字符串,而不是
对象通过
JSON.stringify
:
function processClientAccount() {
...
const jsonObj = {value: 10, list: [1,2,3,4,5,6], name: "Joe Smith"};
return JSON.stringify(jsonObj);
}
返回的值将以列表形式传递到回调函数中,
ExecutionResult
对象的操作。如果从函数返回 JSON 字符串,则可以将其转换
转换为 JavaScript 对象
JSON.parse
方法:
function callbackFunctionName(results) {
for (var i = 0; i < results.length; i++) {
var resultObj = JSON.parse(results[i].getReturnValue());
}
}
通过
executeInParallel
方法的运算上限为 50
accounts
,
因此您必须自行实施限制
账号。您可以使用
withLimit
或
withIds
方法
ManagedAccountSelector
类来限制脚本检索的账号数量。
执行时间限制
如需了解相关信息,请参阅此页面 。