请按照以下步骤启动您的第一个脚本。
Google Ads 账号
- 登录您的 Google Ads 账号。
- 点击工具图标 ,然后选择批量操作下的脚本。
- 按 + 图标 可添加脚本。
将以下代码复制并粘贴到编辑器区域内的 main 函数中:
function main() { let keywords = AdsApp.keywords() .orderBy("metrics.impressions DESC") .forDateRange("YESTERDAY") .withLimit(10) .get(); console.log("The 10 keywords with the most impressions yesterday:"); for (const keyword of keywords) { console.log(`${keyword.getText()}: ${keyword.getStatsFor("YESTERDAY") .getImpressions()}`); } }
出现提示时,点击授权,以便脚本可以代表您访问账号。必须针对每个脚本执行此操作一次。
点击预览以在预览模式下运行脚本。结果将显示在更改/日志面板中。
经理账号
您必须先拥有 Google Ads 经理账号,才能运行 Ad Manager 脚本。
- 登录您的 Google Ads 经理账号。
- 点击工具图标 ,然后选择批量操作下的脚本。
- 按“+”图标 添加脚本。
将以下代码复制并粘贴到编辑器区域内的 main 函数中:
function main() { // Retrieve all children accounts. const accountIterator = AdsManagerApp.accounts().get(); // Iterate through the account list. for (const account of accountIterator) { // Get stats for the child account. const stats = account.getStatsFor("THIS_MONTH"); // And log it. console.log(`${account.getCustomerId()},${stats.getClicks()},` + `${stats.getImpressions()},${stats.getCost()}`); } }
出现提示时,点击授权,以便脚本可以代表您访问账号。必须针对每个脚本执行此操作一次。
点击预览以在预览模式下运行脚本。结果将显示在更改/日志面板中。
如需查看更多脚本段落示例,请访问我们的示例页面。