为什么我无法获得 Google Adwords 视频广告系列?

Why Can't I Get Google Adwords Video Campaigns?

获取所有 Adwords 广告系列似乎有问题。当我当前尝试检索所有广告系列时,我没有获得视频广告系列。我通过文档的理解是它不应该做这么多工作。另一个 SO 用户有类似的问题

这是 Google Adwords 错误、弃用错误还是我搞砸了?

require_once('Google/Api/Ads/AdWords/Lib/AdWordsUser.php');

$oauth2Info = array('client_id' => $client_id, 'client_secret' => $client_secret, 'access_token' => $access_token);

$user = new AdWordsUser();
$user->SetDeveloperToken($developer_token);
$user->SetOAuth2Info($oauth2Info);

$customerService = $user->GetService('CustomerService', 'v201509');
$customer = $customerService->get();

$user->SetClientCustomerId($customer->customerId);

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

$selector = new Selector();
$selector->fields = array('Id', 'Name');
$selector->ordering[] = new OrderBy('Name', 'ASCENDING');
$selector->paging = new Paging(0, 500);
$page = $campaignService->get($selector);

页面值仅包含非视频广告系列。我正在升级 API,所以可能无法获取 API 版本 v201509 的视频?

Google Adwords API 目前不支持视频广告系列。

您可以通过视频性能报告收集一些数据:https://developers.google.com/adwords/api/docs/appendix/reports/video-performance-report

这是您可以通过 API 在 TrueView(视频 Adwords)上获得的唯一数据。