关键字
    
    
      
    
    
      
      使用集合让一切井井有条
    
    
      
      根据您的偏好保存内容并对其进行分类。
    
  
  
      
    
  
  
  
  
  
    
  
  
    
    
    
在现有广告组中创建关键字
function createHatsKeyword() {
  // This example snippet creates a broad match keyword for "hats".  Keywords
  // can be created with many optional settings, such as a max CPC bid, tracking
  // URL templates, and more.  Please customize this example for your specific
  // use case.  For more details about keyword builder options, see
  // https://developers.google.com/google-ads/scripts/docs/reference/adsapp/adsapp_keywordbuilder.
  const adGroupName = 'Ad group 1';
  const adGroupIterator = AdsApp.adGroups()
        .withCondition(`ad_group.name = "${adGroupName}"`)
        .get();
  if (!adGroupIterator.hasNext()) {
    throw new Error(`No ad group found with name "${adGroupName}"`);
  }
  const adGroup = adGroupIterator.next();
  if (adGroupIterator.totalNumEntities() > 1) {
    console.warn(`Multiple ad groups named "${adGroupName}" found.
Using the one from campaign "${adGroup.getCampaign().getName()}".`);
  }
  const keywordOperation = adGroup.newKeywordBuilder()
        .withText('hats')
        .withCpc(1.25)
        .withFinalUrl('https://www.example.com')
        .build();
  return keywordOperation;
}
暂停广告组中的现有关键字
function pauseKeywordInAdGroup(keywordText, adGroupName) {
  const adGroupIterator = AdsApp.adGroups()
        .withCondition(`ad_group.name = "${adGroupName}"`)
        .get();
  if (!adGroupIterator.hasNext()) {
    throw new Error(`No ad group found with name "${adGroupName}"`);
  }
  const adGroup = adGroupIterator.next();
  if (adGroupIterator.totalNumEntities() > 1) {
    console.warn(`Multiple ad groups named "${adGroupName}" found.
Using the one from campaign "${adGroup.getCampaign().getName()}".`);
  }
  for (const keyword of adGroup.keywords().withCondition(
      `ad_group_criterion.keyword.text = "${keywordText}"`)) {
    keyword.pause();
  }
}
获取广告组中的所有关键字
function getKeywordsInAdGroup(adGroupName) {
  const keywordIterator = AdsApp.keywords()
        .withCondition(`ad_group.name = "${adGroupName}"`)
        .get();
  console.log(`Ad Group "${adGroupName}" has ${
      keywordIterator.totalNumEntities()} keywords`);
  return keywordIterator;
}
记录广告组中所有关键字的统计信息
function logKeywordStatsForAdGroup() {
  // This example snippet prints click and impression statistics to the script
  // execution log.  Please customize this example for your specific use case.
  // For all the kinds of statistics that can be logged, see
  // https://developers.google.com/google-ads/scripts/docs/reference/adsapp/adsapp_stats.
  const adGroupName = 'Ad group 1';
  const adGroupIterator = AdsApp.adGroups()
        .withCondition(`ad_group.name = "${adGroupName}"`)
        .get();
  if (!adGroupIterator.hasNext()) {
    throw new Error(`No ad group found with name "${adGroupName}"`);
  }
  const adGroup = adGroupIterator.next();
  if (adGroupIterator.totalNumEntities() > 1) {
    console.warn(`Multiple ad groups named "${adGroupName}" found.
Using the one from campaign "${adGroup.getCampaign().getName()}".`);
  }
  for (const keyword of adGroup.keywords()) {
    let stats = keyword.getStatsFor('LAST_MONTH');
    console.log(`Ad Group: "${adGroup.getName()}"`);
    console.log(`Keyword: "${keyword.getText()}"`);
    console.log(`Clicks: ${stats.getClicks()}`);
    console.log(`Impressions: ${stats.getImpressions()}`);
    console.log('--------------------');
  }
}
  
  
  
  
    
  
 
  
    
    
      
       
    
    
  
  
  如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
  最后更新时间 (UTC):2025-08-21。
  
  
  
    
      [null,null,["最后更新时间 (UTC):2025-08-21。"],[],[]]