gpt4 book ai didi

php - 通过 Web API 将 YouTube 视频上传到单个 channel

转载 作者:搜寻专家 更新时间:2023-10-31 22:00:28 25 4
gpt4 key购买 nike

我想让我的用户能够在我的 YouTube channel 上上传他们的视频,所以我使用这个小脚本来上传视频

// Call set_include_path() as needed to point to your client library.
require_once 'Google/autoload.php';
require_once 'Google/Client.php';
require_once 'Google/Service/YouTube.php';
session_start();

/*
* You can acquire an OAuth 2.0 client ID and client secret from the
* Google Developers Console <https://console.developers.google.com/>
* For more information about using OAuth 2.0 to access Google APIs, please see:
* <https://developers.google.com/youtube/v3/guides/authentication>
* Please ensure that you have enabled the YouTube Data API for your project.
*/
$OAUTH2_CLIENT_ID = 'code 1';
$OAUTH2_CLIENT_SECRET = 'code 2';

$client = new Google_Client();
$client->setClientId($OAUTH2_CLIENT_ID);
$client->setClientSecret($OAUTH2_CLIENT_SECRET);
$client->setScopes('https://www.googleapis.com/auth/youtube');
$redirect = filter_var('http://localhost/testapidata/uploads.php',
FILTER_SANITIZE_URL);
$client->setRedirectUri($redirect);


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

if (isset($_GET['code'])) {
if (strval($_SESSION['state']) !== strval($_GET['state'])) {
die('The session state did not match.');
}

$client->authenticate($_GET['code']);
$_SESSION['token'] = $client->getAccessToken();
header('Location: ' . $redirect);
}

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

// 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 ="a.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_ServiceException $e) {
$htmlBody .= sprintf('<p>A service error occurred: <code>%s</code></p>',
htmlspecialchars($e->getMessage()));
} catch (Google_Exception $e) {
echo $_SESSION['token'];
$client->revokeToken($_SESSION['token']);
$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 应用程序在第一次它给我的时候:

    access token has expired
  2. 我仍然想将视频上传到特定 channel 而不是用户 channel

最佳答案

OAuth 用于获得特定帐户的授权 - 即您要上传到的帐户。您犯的错误是将 OAuth 流程呈现给用户。您应该自己完成 OAuth 流程,为您自己的帐户获取访问 token ,然后将该访问 token 存储在您的服务器上,并允许您的用户使用该 token 访问上传到您的帐户。在代码中检查 if ($client->getAccessToken()) 的地方,将其替换为加载您已经存储的帐户的访问 token (从文件或数据库)。我建议将 OAuth 流程页面隐藏起来,仅供您使用。

请注意,YouTube 的 OAuth 范围不够细化,无法让您明确地只允许它上传视频而不允许其他任何内容。因此,您不应将访问 token 暴露给客户端(例如,允许将 javascript 直接上传到 YouTube),否则您会使您的帐户面临恶意事件的风险,例如人们删除您拥有的所有视频。但是,在上面的代码中,您仅使用服务器端的 token 来上传服务器端已有的视频,这种方法就可以了。

关于php - 通过 Web API 将 YouTube 视频上传到单个 channel ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30008503/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com