すべてのAdwordsキャンペーンを取得する際に問題があるようです。現在、すべてのキャンペーンを取得しようとすると、動画キャンペーンを取得できません。ドキュメンテーションを通じた私の理解は、このような多くの作業ではならないということでした。別のSOユーザーにも同様の問題がありましたWhats happens with GET Video Adwords CampaignsGoogleアドワーズビデオのキャンペーンを入手できないのはなぜですか?
これはGoogleアドワーズ広告のエラー、サポート終了のエラー、または私の最後を台無しにしたものですか?
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の動画を取得できません。
*私のクリスタルボールは言った.... *あなたは私たちがその質問を判断するために何も私たちを示していないので、何かを台無しにした場合、我々はおそらく知ることができる方法はありません。 –
私はリンクを投稿した過去のユーザーとは何か特別なことも、何もしませんでした。 –