gpt4 book ai didi

php - 如何使用 YouTube Analytics API v3 获取 youtube 视频的分享数?

转载 作者:搜寻专家 更新时间:2023-10-31 21:03:30 27 4
gpt4 key购买 nike

我正在尝试使用 YouTube Analytics API v3 获取 YouTube 视频的分享数。我正在使用 google php 客户端库上传视频。我可以使用此 url 找到喜欢、不喜欢等的计数:

https://www.googleapis.com/youtube/v3/videos?part=statistics&id=Nyk_ltlr6pc&key={APP_KEY}

但无法找到任何此类资源来获取共享计数。

我看过这个帖子:How to get share count of a youtube video using youtube api?

但我无法从这篇文章中获得任何信息,因为这篇文章是旧的,并且与当前的 YouTube Analytics API v3 相比,它使用的是 YouTube Analytics API v1。

请多指教。谢谢。

最佳答案

我知道已经晚了,但我仍然认为我应该分享代码,所以如果有人需要寻找与此类似的功能,它会对他有所帮助。

set_include_path($_SERVER['DOCUMENT_ROOT'] . '/library/Youtube/src/');

require_once 'Google/autoload.php';
require_once 'Google/Client.php';
require_once 'Google/Service/YouTube.php';

session_start();

$startdate = <DATE_WHEN_YOUR_GET_UPLOADED>;
$video_id = <YOUR_VIDEO_ID>;
$video_id = "video==" .$video_id;

$key = file_get_contents('the_key.txt'); //YOUR_ACCESS_TOKEN

$OAUTH2_CLIENT_ID = <YOUR_OAUTH2_CLIENT_ID>;
$OAUTH2_CLIENT_SECRET = <YOUR_OAUTH2_CLIENT_SECRET>;

$scope = array("https://www.googleapis.com/auth/youtube.force-ssl", "https://www.googleapis.com/auth/youtubepartner-channel-audit", "https://www.googleapis.com/auth/youtube", "https://www.googleapis.com/auth/youtube.readonly", "https://www.googleapis.com/auth/yt-analytics.readonly", "https://www.googleapis.com/auth/yt-analytics-monetary.readonly","https://www.googleapis.com/auth/youtubepartner");

try{
// Client init
$client = new Google_Client();
$client->setClientId($OAUTH2_CLIENT_ID);
$client->setClientSecret($OAUTH2_CLIENT_SECRET);
$client->setAccessType('offline');
$client->setAccessToken($key);
$client->setScopes($scope);

if ($client->getAccessToken()) {
//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()) {
//refresh your access token if it's expired
$newToken = json_decode($client->getAccessToken());
$client->refreshToken($newToken->refresh_token);
file_put_contents('the_key.txt', $client->getAccessToken());
}

$analytics = new Google_Service_YouTubeAnalytics($client);

$channel_id = <YOUR_CHANNEL_ID>;
$ids = 'channel=='.$channel_id;
$end_date = date("Y-m-d"); //current date
$start_date = startdate; //date when you uploaded your video
$optparams = array(
'filters' => $video_id,
);

$metric = 'likes,shares'; //what you want to fetch

$api = $analytics->reports->query($ids, $start_date, $end_date, $metric, $optparams);
print_r(json_encode($api->rows[0]));

} else{
// @TODO Log error
echo 'Problems creating the client';
}
}catch (Google_Service_Exception $e) {
echo sprintf('<p>A service error occurred: <code>%s</code></p>',htmlspecialchars($e->getMessage()));
}

请随时查看我的代码并提出任何适当的更改建议。

关于php - 如何使用 YouTube Analytics API v3 获取 youtube 视频的分享数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36883268/

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