GET Video Adwords广告系列

时间:2016-04-08 10:16:28

标签: google-adwords

最近我启动了一个项目,可以从google adwords api获取广告系列,并制作有关该信息的分析报告。

我有这个问题:

我发布这段代码来获取所有广告系列:

public function testGetCampaigns()
{
    $user = new \AdWordsUser();
    $user->LogAll();

    $campaignService = $user->GetService('CampaignService', 'v201603');

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

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

    do {
        $page = $campaignService->get($selector);
        if (isset($page->entries)) {
            foreach ($page->entries as $campaign) {
                printf("Campaign with name '%s' and ID '%s' was found.\n",
                $campaign->name, $campaign->id);
            }
        } else {
            print "No campaigns were found.\n";
        }

        $selector->paging->startIndex += \AdWordsConstants::RECOMMENDED_PAGE_SIZE;
    } while ($page->totalNumEntries > $selector->paging->startIndex);

}

但结果不是我创建的两个广告系列,只是一个。

我不得不说,api不给我的是视频广告系列,而不是搜索广告系列。

该法典的结果:

1/1(100%)广告系列名称' Testingalot'和ID' 469071928'被发现了。

Failure

1 个答案:

答案 0 :(得分:0)

这是正确的,因为CampaignService不会在列表中显示视频广告系列。参见例如https://groups.google.com/forum/#!topic/adwords-api/SH7lk_y4GTw