0

Zend_Gdata (Zend Framework 1.12.0) を使用して、API 経由で YouTube に動画をアップロードしようとしています。直接アップロードを機能させるのに問題はありませんでしたが、ブラウザベースのアップロードでは常に 400 - INVALID TOKEN エラーが発生します。私は何か重要なものを見逃しているに違いないと確信していますが、それに気付かないほど小さいです。

これに関連する 2 つのファイルがあります。

index.php

<?php
$youTubeAPIKey = '<API_Key>';
$username = '<user>';
$password = '<pass>';

set_include_path(get_include_path().PATH_SEPARATOR.__DIR__."/vendor");
require_once 'Zend/Loader/Autoloader.php';
Zend_Loader_Autoloader::getInstance();

try
{
    $authenticationURL= 'https://www.google.com/accounts/ClientLogin';
    $httpClient = Zend_Gdata_ClientLogin::getHttpClient(
              $username,
              $password,
              $service = 'youtube',
              $client = null,
              $source = 'BrowserUploaderTest', // a short string identifying your application
              $loginToken = null,
              $loginCaptcha = null,
              $authenticationURL);

    $yt = new Zend_Gdata_YouTube($httpClient, "browser upload test", "Test version 0.1", $youTubeAPIKey);
    $videoEntry = new Zend_Gdata_YouTube_VideoEntry();

    $videoEntry->setVideoTitle("Test movie");
    $videoEntry->setVideoDescription("This is a test movie");
    $videoEntry->setVideoPrivate();

    // @todo This must be a valid YouTube category, how to get a list of valid categories?
    $videoEntry->setVideoCategory('Autos');
    $videoEntry->setVideoTags('cars, funny');

    // Get an upload token
    $tokenHandlerUrl = 'http://gdata.youtube.com/action/GetUploadToken';
    $tokenArray = $yt->getFormUploadToken($videoEntry, $tokenHandlerUrl);
    $token = $tokenArray['token'];
    $url = $tokenArray['url'];
    // print "Token value: {$tokenArray['token']}\n url: {$tokenArray['url']}\n";
    $nextUrl = "http://" . $_SERVER['HTTP_HOST'] . "/uploadDone.php";
}
catch (Zend_Gdata_App_HttpException $httpException)
{
    echo $httpException->getRawResponseBody();
}
catch (Zend_Gdata_App_Exception $e) {
    echo $e->getMessage();
}
catch (Exception $e)
{
    print $e->getTraceAsString();
}
?><!DOCTYPE html>
<html>
    <head>
        <title>Testing Youtube upload</title>
    </head>

    <body>
        <table>
            <tr>
                <td>
                    Url:
                </td>
                <td>
                    <?= $url ?>
                </td>
            </tr>
            <tr>
                <td>
                    Token:
                </td>
                <td>
                    <?= $token ?>
                </td>
            </tr>
        </table>
        <form action="<?= $url ?>.?nexturl=<?= urlencode($nextUrl) ?>" enctype="multipart/form-data" method="post">
            <input name="token" type="hidden" value="<?= $token ?>" />
            <input name="file" type="file" />
            <input type="submit" value="Upload file" />
        </form>
    </body>
</html>

およびuploadDone.php

<?php
print nl2br(print_r($_GET, true));
print nl2br(print_r($_POST, true));

Stack Overflow で検索し、Google で数時間検索しましたが、それを解決するものは何も見つかりませんでした。どんな助けでも大歓迎です。

注: このコードは、API の使用をテストするためのものであり、ほとんどが Google の開発者ガイド (https://developers.google.com/youtube/2.0/developers_guide_php#Browser_based_Upload) から取得され、Yii フレームワークのドキュメント ( http://www.yiiframework.com/wiki/375/youtube-api-v2-0-browser-based-uploading/)。製品コードはより構造化された方法で書き直されますが、現時点では重要ではありません。

4

1 に答える 1

1

あなたaction="<?= $url ?>.?nexturl=<?= urlencode($nextUrl) ?>"は疑わしいようです。.変数が評価された直後に間違った文字があり$url、URL が台無しになっていますか?

于 2012-10-24T01:53:42.747 に答える