如何使用google adwords api获取所有广告系列的详细信息?

时间:2015-11-11 14:43:36

标签: php google-adwords

我可以使用google adwords api(带有测试帐户)获取广告系列列表,我想获取每个广告系列的所有详细信息(展示次数,点击次数,预算,费用,cpc,...) api,该怎么办? 尝试这个:

  // Get the service, which loads the required classes.
  $campaignService = $user->GetService('CampaignService', ADWORDS_VERSION);

  // Create selector.
  $selector = new Selector();
  $selector->fields = array('Id', 'Name','Impressions', 'Clicks');
  $selector->ordering[] = new OrderBy('Name', 'ASCENDING');

  // Create paging controls.
  $selector->paging = new Paging(0, AdWordsConstants::RECOMMENDED_PAGE_SIZE);

  do {
    // Make the get request.
    $page = $campaignService->get($selector);

    // Display results.
    if (isset($page->entries)) {
      foreach ($page->entries as $campaign) {
        printf("Campaign with name '%s' and ID '%s' and Impressions %s was found.\n",
            $campaign->name, $campaign->id,$campaign->impressions);
      }
    } else {
      print "No campaigns were found.\n";
    }

    // Advance the paging index.
    $selector->paging->startIndex += AdWordsConstants::RECOMMENDED_PAGE_SIZE;
  } while ($page->totalNumEntries > $selector->paging->startIndex);

但是得到了这个错误:

An error has occurred: [SelectorError.INVALID_FIELD_NAME @ serviceSelector; trigger:'Impressions', SelectorError.INVALID
_FIELD_NAME @ serviceSelector; trigger:'Clicks']

感谢。

1 个答案:

答案 0 :(得分:3)

对于展示次数,点击次数和转化次数等效果数据,您必须使用ReportingService。 (您无法使用CampaignService查询该信息) 使用ReportingService,您必须使用CAMPAIGN_PERFORMANCE_REPORT。

https://developers.google.com/adwords/api/docs/appendix/reports/campaign-performance-report

我建议使用AWQL代替查询,因为它与SQL非常相似。因此,如果您熟悉SQL,则很容易理解。

https://developers.google.com/adwords/api/docs/guides/awql

PHP示例(CriteriaReport): https://github.com/googleads/googleads-php-lib/blob/master/examples/AdWords/v201509/Reporting/DownloadCriteriaReportWithAwql.php