我正在敲打这个4小时,所以我可能需要一些帮助。
我想做的是在youtube上存储视频,以进行我们正在进行的视频竞赛。我真的更喜欢通过服务帐户进行双腿OAuth访问(我希望用户即使没有Gmail帐户也无法向我们发送视频,我希望将这些视频设置为私有或在我们的YouTube帐户中不公开)。
但它似乎无法奏效。我现在的代码是这样的:
function go()
{
require_once 'googleClient/Google_Client.php';
require_once 'googleClient/contrib/Google_YoutubeService.php';
define("CLIENT_ID",'xxxxxxx.apps.googleusercontent.com');
define("SERVICE_ACCOUNT_NAME",'xxxxxxx@developer.gserviceaccount.com');
define("KEY_FILE", 'googleClient/verylonghashtagprivacystuff-privatekey.p12');
define("SECRET_FILE", 'client_secrets.json');
$client = new Google_Client();
$client->setApplicationName("My Contest App");
$key = file_get_contents(KEY_FILE);
$secret = file_get_contents(SECRET_FILE);
$GAC = new Google_AssertionCredentials( SERVICE_ACCOUNT_NAME,
array('https://www.googleapis.com/auth/youtube.upload',
'https://www.googleapis.com/auth/youtube'),
$key ,'notasecret','http://oauth.net/grant_type/jwt/1.0/bearer');
$client->setAssertionCredentials($GAC);
$client::$auth->refreshTokenWithAssertion();
$client->setClientId(CLIENT_ID); // Did tried to put that one sooner
$client->setClientSecret($secret); // Did tried to put that one sooner
$json = $client->getAccessToken();
$accessToken = json_decode($json)->access_token;
$video = array();
$video["snippet"] = array();
$snippet = new Google_VideoSnippet();
$snippet->setTitle("Contest Video USERNAME");
$snippet->setDescription("Video for contest 2013 USERNAME.");
$snippet->setTags(array("Contest","Whatever","2013"));
$snippet->setCategoryId("22"); //Did tried "Entertainment".
$status = new Google_VideoStatus();
$status->setPrivacyStatus("unlisted");
$video = new Google_Video();
$video->setSnippet($snippet);
$video->setStatus($status);
$client->setAccessToken($json);
$youtube = new Google_YoutubeService($client);
$url = '/projet_video.mp4';
$response = $youtube->videos->insert(
"status,snippet",
$video,
array( 'data' => file_get_contents($url),'mimeType' => "video/*"));
//Did tried video/mp4
return $response ;}
结果是:
error": { "errors": [ {
"domain": "youtube.header",
"reason": "youtubeSignupRequired",
"message": "Forbidden",
"locationType": "header",
"location": "Authorization"
}], "code": 403, "message": "Forbidden" }
答案 0 :(得分:3)
服务帐户无法使用YouTube API
服务帐户不适用于YouTube API通话,因为相关的YouTube频道,您无法将新频道或现有频道与服务帐户相关联。使用服务帐户进行YouTube API调用将返回错误,错误类型设置为未授权,并将原因设置为youtubeSignupRequired。
来源:https://developers.google.com/youtube/v3/guides/moving_to_oauth#service_accounts
答案 1 :(得分:1)
在跟进OP的线程后,问题归结为各种YouTube API都不支持服务帐户,至少目前不支持。您需要使用与您要访问的YouTube频道相关联的实际Google帐户的凭据,浏览其中一个流described in the docs(其中不包含服务帐户流)。
答案 2 :(得分:0)
我解决了,我的回答在这里:How to insert video youtube api v3 through service account with ruby享受!
您收到的错误是因为您没有添加带有电子邮件的人物标签来上传电影。如果您使用我的答案中的代码
,这一切都已解决并正常工作