当前位置: 首页 > 知识库问答 >
问题:

Google youtube PHP API返回无效的上传请求

范振海
2023-03-14

我正试图使用Google API将视频上传到youtube上,并收到以下错误通知:未定义变量:在/home/critter/public_html/test-video.php第136行中的htmlBody

出现服务错误:调用PUT https://www.googleapis.com/Upload/youtube/v3/videos?part=status%2csnippet&uploadtype=recumable&upload_id=aenb2uq0uh7d-5-9cbv9zld6jxa867c4phte_0gyqj5mokskdrad-u_vdt22bc-cqam-_tlllykbr3gf1ol9wdnnopiyw8em5q:(400)无效上传请求

我已经验证了我试图上传的文件被正确打开。

脚本在upload while循环中失败。我花了几个小时寻找解决办法,但到目前为止还没有结果。有人能帮忙吗?

<?php
$path_to_add = 'mypath/google-api-php-client/src';
// Call set_include_path() as needed to point to your client library.
set_include_path(get_include_path() . ':/' . $path_to_add);
require_once 'Google_Client.php';
require_once 'contrib/Google_YouTubeService.php';
session_start();

/* You can acquire an OAuth 2 ID/secret pair from the API Access tab on the Google APIs Console
 <http://code.google.com/apis/console#access>
For more information about using OAuth2 to access Google APIs, please visit:
<https://developers.google.com/accounts/docs/OAuth2>
Please ensure that you have enabled the YouTube Data API for your project. */
$OAUTH2_CLIENT_ID = 'id';
$OAUTH2_CLIENT_SECRET = 'secret';

$client = new Google_Client();
$client->setClientId($OAUTH2_CLIENT_ID);
$client->setClientSecret($OAUTH2_CLIENT_SECRET);
$redirect = filter_var('http://' . $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF'],
    FILTER_SANITIZE_URL);
$client->setRedirectUri($redirect);

// YouTube object used to make all API requests.
$youtube = new Google_YoutubeService($client);

if (isset($_GET['code'])) {
  if (strval($_SESSION['state']) !== strval($_GET['state'])) {
    die('The session state did not match.');
  }
  $client->authenticate();
  $_SESSION['token'] = $client->getAccessToken();
  header('Location: ' . $redirect);
}

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

// Check if access token successfully acquired
if ($client->getAccessToken()) {
  try{
    // REPLACE with the path to your file that you want to upload
    $videoPath = "/path/to/myfile.mp4";

    // Create a snipet with title, description, tags and category id
    $snippet = new Google_VideoSnippet();
    $snippet->setTitle("Pets & Animals");
    $snippet->setDescription("My Family");
    $snippet->setTags(array("dog", "smart"));

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

    // Create a video status with privacy status. Options are "public", "private" and "unlisted".
    $status = new Google_VideoStatus();
    $status->privacyStatus = "unlisted";

    // Create a YouTube video with snippet and status
    $video = new Google_Video();
    $video->setSnippet($snippet);
    $video->setStatus($status);

    // Size of each chunk of data in bytes. Setting it higher leads faster upload (less chunks,
    // for reliable connections). Setting it lower leads better recovery (fine-grained chunks)
    $chunkSizeBytes = 1 * 1024 * 1024;

    // Create a MediaFileUpload with resumable uploads
    $media = new Google_MediaFileUpload('video/*', null, true, $chunkSizeBytes);
    $media->setFileSize(filesize($videoPath));

    // Create a video insert request
    $insertResponse = $youtube->videos->insert("status,snippet", $video,
        array('mediaUpload' => $media));

    $uploadStatus = false;

    // Read file and upload chunk by chunk
    $handle = fopen($videoPath, "rb");
    if($handle) {
        while (!$uploadStatus && !feof($handle)) {
          $chunk = fread($handle, $chunkSizeBytes);
          $uploadStatus = $media->nextChunk($insertResponse, $chunk);
            if($uploadStatus) {
                echo 'status true <BR />';
            }
            else { 
                echo 'status false <BR />';
            }
        }
    }
    else {
        exit("Unable to open the input file.");
    }

    if(!fclose($handle)) {
        echo '<br />close failed';
    }
    else {
        echo '<br />close successful';
    }

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

    $htmlBody .= '</ul>';

  } catch (Google_ServiceException $e) {
    $htmlBody .= sprintf('<p>A service error occurred: <code>%s</code></p>',
        htmlspecialchars($e->getMessage()));
  } catch (Google_Exception $e) {
    $htmlBody .= sprintf('<p>A 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个答案

段干茂实
2023-03-14

也许这能帮到别人。问题是我试图直接从我的硬盘上传一个文件。当我第一次把文件上传到服务器并从那里上传到YouTube时,一切都很好。

 类似资料:
  • 不确定这里的API下发生了什么,但从我的调试输出来看,一切都正常。它将ID传递给有效文件等等。有没有办法在Google SDK中启用调试输出? 在HTTP错误之前,我看到了几个警告: 代码如下: 好的,这个函数是通过文件类(本地或远程)调用的。在这种情况下,是远程文件类调用此函数,提供对本地文件类上载程序(media\u upload)的引用: 所以在远程文件类中,我实现了这个方法。Drive()

  • 再一次在布罗斯沃尔,一切都很完美。在PhoneGap应用程序上仅GET request有效

  • 在改造2中,表示超文本传输协议方法的服务方法必须返回。 是一个泛型,它必须采用表示超文本传输协议方法的返回对象的类型。 例如 对于删除等http方法,不会返回任何内容。在这种情况下,应该为提供什么参数?

  • 我正面临一个前所未有的奇怪问题。我有一个以毫秒为单位的日期,希望将其显示为可读的日期。这是我的代码: 如你所见,我只想创建一个显示时间跨度的字符串。当我调试代码时,日期对象包含正确的值,而

  • 我配置了一个类似以下内容的语句(在这里进行解释,前面没有实际的代码): 就像现在一样,应用程序代码通过调用mybatis/postgres来生成本身以获取下一个序列值,然后将其传递给。 我想重构此代码,以便在中创建。据我所知,一种方法是将语句中的替换为。另一种方法是使用: 我希望在这两种情况下都能得到id的值作为返回值;是否生成了新记录和新序列id,或者如果存在冲突/更新,则为现有id。如何执行此

  • 问题内容: 我正在在线关注CS106A的讲座。我正在阅读第12讲中的代码,但这给了我Eclipse错误。 这是我的代码。似乎错误是由于我的方法中的单词void 。我尝试删除main方法,但是没有它,Java当然无法运行。 我是一名新手,没有人解释这东西的真正含义,但有人告诉我,请不要理会它并使用它。如果有人也可以向我解释,我将不胜感激。 这个错误也出现在“ toLower”方法上。不知道这意味着什