PHPのGoogleクライアントライブラリを使用してYouTubeに動画をアップロードするアプリケーションを構築しています。動画をアップロードできましたが、[収益受け取り]チェックボックスを切り替えられませんでした。ウェブに関する情報はほとんどありません。APIを使用してYouTubeで広告で収益を上げる方法
このリンクは参考になりました。 http://www.techtonet.com/youtube-upload-videos-with-partner-api-in-php/#ipt_kb_toc_51_6
しかし、私はこれを行うことができませんでした。
助けてください。私にとって
// Create a claim resource. Identify the video being claimed, the asset
// that represents the claimed content, the type of content being claimed,
// and the policy that you want to apply to the claimed video.
$claim = new Google_Service_YouTubePartner_Claim();
$claim->setAssetId($assetId);
$claim->setVideoId($videoId);
$claim->setPolicy($policy);
$claim->setContentType("audiovisual");
// Insert the created claim.
$claimInsertResponse = $this->_youtubePartner->claims->insert($claim,
array('onBehalfOfContentOwner' => $contentOwnerId));
# Enable ads for the video. This example enables the TrueView ad format.
$option = new Google_Service_YouTubePartner_VideoAdvertisingOption();
//$option->setAdFormats(array("overlay", "trueview_instream", "standard_instream"));
$option->setAdFormats(array("trueview_instream", "standard_instream"));
$setAdvertisingResponse = $this->_youtubePartner->videoAdvertisingOptions->update(
$videoId, $option, array('onBehalfOfContentOwner' => $contentOwnerId));
こんにちはJulian、ありがとうございました。しかし、私はまだ苦労しています。あなたは最後のパラグラフの答えを詳しく教えていただけますか?私は何かに入っているようですが、現在は非常に不明です。ありがとうございます – floCoder