PHPを使用してYouTubeにビデオをアップロードしようとしています。私はYoutubeAPIv3を使用しており、GoogleAPIPHPクライアントライブラリの最新のチェックアウトされたソースコードを使用しています。https://code.google.com/p/google-api-php-client/
に
あるサンプルコードを使用して認証を実行しています。認証は正常に行われますが、ビデオをアップロードしようとすると、エラーコード500とメッセージがnullとして表示されます。
Google_ServiceException
以前に尋ねられた次の質問を見ました:
phpクライアントライブラリv3を使用してYouTubeにビデオをアップロードしますしかし、受け入れられた答えは、アップロードするファイルデータを指定する方法を説明していません。Youtube API v3とPHPを使用したファイルのアップロード
に関する別の同様の質問を見つけました。コメントにはcategoryIdが必須であると記載されているため、スニペットでcategoryIdを設定しようとしましたが、それでも同じ例外が発生します。
ドキュメントサイト(https://developers.google.com/youtube/v3/docs/videos/insert)でPythonコードも参照しましたが、クライアントライブラリで関数next_chunkが見つかりませんでした。しかし、エラーコード500の取得を再試行するために、ループ(コードスニペットに記載)を配置しようとしましたが、10回の反復すべてで同じエラーが発生します。
以下は、私が試しているコードスニペットです。
$youTubeService = new Google_YoutubeService($client);
if ($client->getAccessToken()) {
print "Successfully authenticated";
$snippet = new Google_VideoSnippet();
$snippet->setTitle = "My Demo title";
$snippet->setDescription = "My Demo descrition";
$snippet->setTags = array("tag1","tag2");
$snippet->setCategoryId(23); // this was added later after refering to another question on stackoverflow
$status = new Google_VideoStatus();
$status->privacyStatus = "private";
$video = new Google_Video();
$video->setSnippet($snippet);
$video->setStatus($status);
$data = file_get_contents("video.mp4"); // This file is present in the same directory as the code
$mediaUpload = new Google_MediaFileUpload("video/mp4",$data);
$error = true;
$i = 0;
// I added this loop because on the sample python code on the documentation page
// mentions we should retry if we get error codes 500,502,503,504
$retryErrorCodes = array(500, 502, 503, 504);
while($i < 10 && $error) {
try{
$ret = $youTubeService->videos->insert("status,snippet",
$video,
array("data" => $data));
// tried the following as well, but even this returns error code 500,
// $ret = $youTubeService->videos->insert("status,snippet",
// $video,
// array("mediaUpload" => $mediaUpload);
$error = false;
} catch(Google_ServiceException $e) {
print "Caught Google service Exception ".$e->getCode()
. " message is ".$e->getMessage();
if(!in_array($e->getCode(), $retryErrorCodes)){
break;
}
$i++;
}
}
print "Return value is ".print_r($ret,true);
// We're not done yet. Remember to update the cached access token.
// Remember to replace $_SESSION with a real database or memcached.
$_SESSION['token'] = $client->getAccessToken();
} else {
$authUrl = $client->createAuthUrl();
print "<a href='$authUrl'>Connect Me!</a>";
}
それは私が間違っていることですか?