2017-06-29 30 views
0

需要制作用户授权,以便服务器将视频上传到用户频道。PHP如何上传到Youtube用户的频道

认证部分:

$client = new Google_Client(); 
$client->setAuthConfigFile(PROPPATH.'/inc/client_secret.json'); 
$client->setRedirectUri('https://back url'); 
$client->setScopes('https://www.googleapis.com/auth/youtube'); 
$client->setAccessType('offline'); 
$credentialsPath = PROPPATH.'/youtube_auth/user_'.get_current_user_id().'.json'; 
if (file_exists($credentialsPath)) { 
    $accessToken = file_get_contents($credentialsPath); 
} else { 

$authUrl = $client->createAuthUrl(); 
if(!isset($_GET['code'])) { 
    echo '<script>window.location = "'.$authUrl.'";</script>'; 
} else { 
    $authCode = $_GET['code']; 
    $accessToken = $client->authenticate($authCode); 
    file_put_contents($credentialsPath, $accessToken); 
} 

认证好像作品并保存一些关键的。 第二部分,试图上传视频:

$client = new Google_Client(); 
$client->setAuthConfigFile(PROPPATH.'/inc/client_secret.json'); 
$client->setScopes('https://www.googleapis.com/auth/youtube'); 
$youtube = new Google_Service_YouTube($client); 
$client->setAccessToken(file_get_contents(PROPPATH.'/youtube_auth/user_2.json')); 
$client->setAccessType('offline'); 
if ($client->getAccessToken()) { 
$video = new Google_Service_YouTube_Video(); 
$chunkSizeBytes = 1 * 1024 * 1024; 
$client->setDefer(true); 
$insertRequest = $youtube->videos->insert("", $video); 
$media = new Google_Http_MediaFileUpload(
    $client, 
    $insertRequest, 
    'video/*', 
    null, 
    true, 
    $chunkSizeBytes 
); 
$media->setFileSize(filesize($videoPath)); 
... 

而且我收到错误:

A service error occurred: { "error": { "errors": [ { "domain": "global", "reason": "authError", "message": "Invalid Credentials", "locationType": "header", "location": "Authorization" } ], "code": 401, "message": "Invalid Credentials" } } What i'm missing?

回答

0

401: Invalid Credentials

Invalid authorization header. The access token you're using is either expired or invalid.

{ 
    "error": { 
    "errors": [ 
     { 
     "domain": "global", 
     "reason": "authError", 
     "message": "Invalid Credentials", 
     "locationType": "header", 
     "location": "Authorization", 
     } 
    ], 
    "code": 401, 
    "message": "Invalid Credentials" 
    } 
} 

Suggested action: Refresh the access token using the long-lived refresh token.

+0

我只是得到它,并尝试使用,任何建议? – user2455079

+0

也许我需要使用不同的范围来授予用户频道访问权限? – user2455079

+0

我想你应该检查你是如何获得的,确保认证服务器实际上刷新你的访问令牌。您正在使用的那个已过期。 https://stackoverflow.com/q/9241213/1841839 – DaImTo

相关问题