瞭解詳情

請按照下列步驟啟動第一個指令碼。

  1. 登入 Google Ads 帳戶。
  2. 按一下「工具」圖示 灰色方塊,內含白色扳手,然後選取「大量操作」下方的「指令碼」
  3. 按下「+」圖示 藍色圓圈,內含白色加號 新增指令碼。
  4. 複製下列程式碼,並貼入主要函式的編輯器區域:

    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()}`);
         }
    }
    
  5. 出現提示時,按一下「授權」,指令碼便可代您存取帳戶。每個指令碼都必須執行這項操作一次。

  6. 按一下「預覽」,即可在預覽模式下執行指令碼。結果會顯示在「變更」/「記錄檔」面板中。

管理員帳戶

您必須先擁有 Google Ads 管理員帳戶,才能執行 Ad Manager 指令碼。

  1. 登入 Google Ads 管理員帳戶。
  2. 按一下工具圖示 灰色方塊,內含白色扳手,然後選取「BULK ACTIONS」下方的「Scripts」
  3. 按下「+」圖示 藍色圓圈,內含白色加號 新增指令碼。
  4. 複製下列程式碼,然後貼到編輯器區域內的主函式中:

    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()}`);
      }
    }
    
  5. 出現提示時,按一下「授權」,指令碼便可代您存取帳戶。每個指令碼都必須執行這項操作一次。

  6. 按一下「預覽」,即可在預覽模式下執行指令碼。結果會顯示在「CHANGES」(變更)/「LOGS」(記錄) 面板中。

如需更多範例腳本片段,請參閱範例頁面