2016-06-17 21 views
1

ユーザーが自分のチャンネルに動画をアップロードできるウェブアプリを構築しようとしています。PHP + Youtube API - 自分のチャンネルに動画をアップロードする方法を教えてください。

だから私は、私はそれがそこにそれを言うと同じように、OAuth 2.0 for Server to Server Applicationsのために行かなければならないと思う:

通常、 アプリケーションが自分のデータで動作するように、GoogleのAPIを使用するときにアプリケーションがサービスアカウントを使用していますではなく、 ユーザーのデータです。

ですので、手順はcreate a service accountに従っています。しかし、手順を完了すると、キーとIDが生成されていた後、私は以下のエラーを得た:

クライアントエラーが発生しました:

:再開可能アップロード(youtube.header、不正なHTTP 401)の起動に失敗しました

これは私の全体のコードです:

// Load 'Google/Client.php' and 'Google/Service/YouTube.php' with composer. 
require_once __DIR__ . '/vendor/autoload.php'; 
session_start(); 

$client_email = '[email protected]'; 
$private_key = file_get_contents('xxx-74c6a50933e3.p12'); 
$scopes = array(
    'https://www.googleapis.com/auth/youtube.upload', 
    'https://www.googleapis.com/auth/youtube', 
    'https://www.googleapis.com/auth/youtubepartner' 
); 

$credentials = new Google_Auth_AssertionCredentials(
    $client_email, 
    $scopes, 
    $private_key 
); 

$client = new Google_Client(); 
$client->setAssertionCredentials($credentials); 
if ($client->getAuth()->isAccessTokenExpired()) { 
    $client->getAuth()->refreshTokenWithAssertion(); 
} 

$htmlBody = ''; 

// Define an object that will be used to make all API requests. 
$youtube = new Google_Service_YouTube($client); 

$htmlBody = ''; 

// Check to ensure that the access token was successfully acquired. 
if ($client->getAccessToken()) { 
    try{ 
    // REPLACE this value with the path to the file you are uploading. 
    $videoPath = "/home/xxx/Desktop/Vids/small.mp4"; 

    // Create a snippet with title, description, tags and category ID 
    // Create an asset resource and set its snippet metadata and type. 
    // This example sets the video's title, description, keyword tags, and 
    // video category. 
    $snippet = new Google_Service_YouTube_VideoSnippet(); 
    $snippet->setTitle("Test title"); 
    $snippet->setDescription("Test description"); 
    $snippet->setTags(array("tag1", "tag2")); 

    // Numeric video category. See 
    // https://developers.google.com/youtube/v3/docs/videoCategories/list 
    $snippet->setCategoryId("22"); 

    // Set the video's status to "public". Valid statuses are "public", 
    // "private" and "unlisted". 
    $status = new Google_Service_YouTube_VideoStatus(); 
    $status->privacyStatus = "public"; 

    // Associate the snippet and status objects with a new video resource. 
    $video = new Google_Service_YouTube_Video(); 
    $video->setSnippet($snippet); 
    $video->setStatus($status); 

    // Specify the size of each chunk of data, in bytes. Set a higher value for 
    // reliable connection as fewer chunks lead to faster uploads. Set a lower 
    // value for better recovery on less reliable connections. 
    $chunkSizeBytes = 1 * 1024 * 1024; 

    // Setting the defer flag to true tells the client to return a request which can be called 
    // with ->execute(); instead of making the API call immediately. 
    $client->setDefer(true); 

    // Create a request for the API's videos.insert method to create and upload the video. 
    $insertRequest = $youtube->videos->insert("status,snippet", $video); 

    // Create a MediaFileUpload object for resumable uploads. 
    $media = new Google_Http_MediaFileUpload(
     $client, 
     $insertRequest, 
     'video/*', 
     null, 
     true, 
     $chunkSizeBytes 
    ); 
    $media->setFileSize(filesize($videoPath)); 


    // Read the media file and upload it chunk by chunk. 
    $status = false; 
    $handle = fopen($videoPath, "rb"); 
    while (!$status && !feof($handle)) { 
     $chunk = fread($handle, $chunkSizeBytes); 
     $status = $media->nextChunk($chunk); 
    } 

    fclose($handle); 

    // If you want to make other calls after the file upload, set setDefer back to false 
    $client->setDefer(false); 


    $htmlBody .= "<h3>Video Uploaded</h3><ul>"; 
    $htmlBody .= sprintf('<li>%s (%s)</li>', 
     $status['snippet']['title'], 
     $status['id']); 

    $htmlBody .= '</ul>'; 

    } catch (Google_Service_Exception $e) { 
    $htmlBody .= sprintf('<p>A service error occurred: <code>%s</code></p>', 
     htmlspecialchars($e->getMessage())); 
    } catch (Google_Exception $e) { 
    $htmlBody .= sprintf('<p>An client error occurred: <code>%s</code></p>', 
     htmlspecialchars($e->getMessage())); 
    } 

    $_SESSION['token'] = $client->getAccessToken(); 
} else { 
    // If the user hasn't authorized the app, initiate the OAuth flow 
    $state = mt_rand(); 
    $client->setState($state); 
    $_SESSION['state'] = $state; 

    $authUrl = $client->createAuthUrl(); 
    $htmlBody = <<<END 
    <h3>Authorization Required</h3> 
    <p>You need to <a href="$authUrl">authorize access</a> before proceeding.<p> 
END; 
} 
?> 

<!doctype html> 
<html> 
<head> 
<title>Video Uploaded</title> 
</head> 
<body> 
    <?=$htmlBody?> 
</body> 
</html> 

私が見逃しているものを任意のアイデア?

+1

YouTubeチャンネルの設定で問題が発生することはありますか?おそらく、ビデオをサービスアカウントからアップロードできるようにする設定ですか? –

+1

@TMartinおそらく、サービスアカウントから動画をアップロードできるようにする設定ですか? - それはどうすれば私のチャンネルから許可できますか? – laukok

+1

私はいくつかの調査をしましたが、あなたが試みていることが可能かどうかは分かりません。あなたはそれが他の場所で成功したのを見たことがありますか?これを参照してください:https://developers.google.com/youtube/v3/guides/moving_to_oauth#service-accounts-do-not-work-with-the-youtube-api –

答えて

1

私はこのarticleから答えを見つけたと思います。

ステップ:

ステップ1(777に設定してください)token.phpを作成します。 https://developers.google.com/youtube/v3/code_samples/php#upload_a_video - - Googleからのコード例を置き、次のように、この変更の少しと:

変更:

if (isset($_SESSION['token'])) { 
    $client->setAccessToken($_SESSION['token']); 
} 

へ:

if (isset($_SESSION['token'])) { 
    $client->setAccessToken($_SESSION['token']); 

    // @ref: http://www.whitewareweb.com/php-youtube-video-upload-google-api-oauth-2-0-v3/ 
    echo "Access Token: " . $_SESSION['token']; 
} 

ステップ2.実行token.phpにあなたのブラウザ。アクセスを許可します。次に、以下のJSON出力を得る:

ステップ3 token.txtとして保存

{ 
    "access_token": "xxxxt7YvjObwYx3DG4NRmfjiQ", 
    "token_type": "Bearer", 
    "expires_in": 3600, 
    "refresh_token": "xxxxq5hzQTUapZ7zyRIHP7X_G8", 
    "created": 1466238624 
} 

をアップロードを作成します。Googleの同じサンプルコードを使用して、次のように変更してください:

1つ。

$key = file_get_contents('token.txt'); 

その後$keynew Google_Client()にを渡します:

$OAUTH2_CLIENT_ID = 'xxxx.googleusercontent.com'; 
$OAUTH2_CLIENT_SECRET = 'xxxx'; 

// Client init 
$client = new Google_Client(); 
$client->setClientId($OAUTH2_CLIENT_ID); 
$client->setAccessType('offline'); 
$client->setApprovalPrompt('force'); 
$client->setAccessToken($key); 
$client->setClientSecret($OAUTH2_CLIENT_SECRET); 

はあなたのupload.phpの初めにtoken.txtファイルをインクルードします。

/** 
    * Check to see if our access token has expired. If so, get a new one and save it to file for future use. 
    */ 
    if($client->isAccessTokenExpired()) { 
     $newToken = json_decode($client->getAccessToken()); 
     $client->refreshToken($newToken->refresh_token); 
     file_put_contents('token.txt', $client->getAccessToken()); 
    } 

ステップ4$youtube = new Google_Service_YouTube($client);前にトライキャッチセクションにこのコードを追加します。 upload.phpを実行します。

その記事全体からコードを取得できます。

+1

コード全体を投稿してください!どうもありがとう –

-1

私はこれはかなり奇妙な音を知っているが、私は他の日に同じ問題がありました。私は最終的にカテゴリーの多くは、YouTubeのでは動作しないことを見つけるために、私は、このトラブルシューティングを行うの時間を要した、

は1に変更してみてください... YouTubeカテゴリのIDを変更してみてください...別の事をしようとしていましたPHP SDK。

これがうまくいく場合、YouTubeへのAPI呼び出しを行い、すべてのカテゴリIDのリストを取得し、動作するものを見つけるまで個別に試してみるとよいでしょう。 :https://developers.google.com/youtube/v3/docs/videoCategories/list

これは、あなたのOAuthトークンがすべて正しい持っていると仮定しています。

+0

OAuthトークンを正しく取得するにはどうすればよいですか?私はウェブブラウザからアップロードしようとするたびに認証するように頼んでいます! – laukok

+0

OAuthで認証すると、最初のトークンとリフレッシュトークンが返されます。新しいOAuthトークンを取得するには、OAuthトークンが期限切れになるたびに更新トークンを使用し、Google認証サーバーにアクセスする必要があります。ここにリンクされたOAuthのドキュメントを見てください。[link](https://developers.google.com/identity/protocols/OAuth2WebServer) –

+0

私は、自分がアップロードしたいときにユーザーが認証されることを望まないウェブサイト/ webapp。私はちょうどこの血まみれのOAuthについて知らずに無邪気にアップロードしたいです。 – laukok

関連する問題