【问题标题】:Youtube API get Livestream scheduledStartTimeYoutube API 获取 Livestream scheduledStartTime
【发布时间】:2021-05-16 02:16:22
【问题描述】:

我需要从我的 Youtube 频道获取即将进行的直播列表并将其展示给我的网站访问者。

问题是通过简单的 API 密钥 http 请求 ('https://youtube.googleapis.com/youtube/v3/') 我无法访问 scheduleStartTime 值。

这样做的唯一方法是使用 oauth 身份验证,因此请求将是 '使用令牌获取 https://www.googleapis.com/youtube/v3/liveBroadcasts'

这是我用于基本 API 密钥请求的代码:

<?php


$base_url = 'https://youtube.googleapis.com/youtube/v3/';

$key = 'API KEY';

$channelId = 'CHANNEL ID';

$maxResults = 30;

$API_URL_LIVE_UPCOMING = $base_url . 'search?order=date&part=snippet&channelId=' .$channelId. '&maxResults=' .$maxResults. '&eventType=upcoming&type=video&key=' .$key;
   
$url_upcoming = $API_URL_LIVE_UPCOMING;

$json = file_put_contents('youtube-cache-upcoming.json', file_get_contents($url_upcoming));
   
$json_data = file_get_contents('youtube-cache-upcoming.json'); 

foreach ( $json_data->items as $item ) {
    $id = $item->id->videoId;
    $title = $item->snippet->title;
    $publishTime = $item->snippet->publishTime;
    $description = $item->snippet->description;
    $thumbnail = $item->snippet->thumbnails;
    $mediumThumbnail = $thumbnail->medium->url;
    
    echo '<div class="16022021" style="border-bottom: 1px solid #647279; margin-bottom:4%;margin-top:4%;padding-bottom: 30px; width: 100%;">';
    echo '<div class="col-md-7">';
    //echo '<p style="font-size:1.2em;">'.$publishTime.'</p>';
    echo '<p style="font-size:1.4em;color:#FF714D"><strong>'.$title.'</strong></p>';
    echo '<p style="font-size:1.2em;">'.$description. '</p>';
    echo '<p style="margin-top:4%;"><a class="btn btn-lg btn-success" href="https://www.youtube.com/watch?v='.$id.'">VIEW VIDEO</a></p>';
    echo '</div>';
    echo '<div class="col-md-5 align-left"><iframe width="560" height="315" src="https://www.youtube.com/embed/'.$id.'?rel=0&autoplay=1" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></div>';        
    //echo '<div class="col-md-5 align-left"><a target="_blank" href="https://www.youtube.com/watch?v='.$id.'"><img class="img-responsive" alt="'.$title.'" src="'.$mediumThumbnail.'" title="'.$title.'" /></a></div>';
    echo '</div>';
}
echo '</div>';
?>

我基本上想获得一个类似的简单结果,如果能看到一个关于如何管理身份验证过程并在 html 页面上显示响应的编码示例,而无需安装任何库,那就太好了。

感谢您的帮助。

【问题讨论】:

  • 我希望这是私人用户数据,您需要作为频道所有者进行身份验证才能看到类似的内容。你有没有尝试过?使用 Oauth2 我们可以看到你的代码吗?
  • 我想知道从哪里开始使用 Oauth2 代码。我的 ID 客户端 OAuth 2.0 已经从 console.cloud.google.com 配置我已经在测试控制台 developers.google.com/youtube/v3/live/docs/liveBroadcasts 上测试了 api 调用,它返回了我需要的信息... example scheduledStartTime": "2021-02-16T15: 00:00Z”,我只是不明白如何以最简单的方式实现身份验证。

标签: php oauth-2.0 youtube-api google-oauth youtube-data-api


【解决方案1】:

这是 youtube.liveBroadcasts.list 方法的基本示例。

<?php

/**
 * Sample PHP code for youtube.liveBroadcasts.list
 * See instructions for running these code samples locally:
 * https://developers.google.com/explorer-help/guides/code_samples#php
 */

if (!file_exists(__DIR__ . '/vendor/autoload.php')) {
  throw new Exception(sprintf('Please run "composer require google/apiclient:~2.0" in "%s"', __DIR__));
}
require_once __DIR__ . '/vendor/autoload.php';

$client = new Google_Client();
$client->setApplicationName('API code samples');
$client->setScopes([
    'https://www.googleapis.com/auth/youtube.readonly',
]);

// TODO: For this request to work, you must replace
//       "YOUR_CLIENT_SECRET_FILE.json" with a pointer to your
//       client_secret.json file. For more information, see
//       https://cloud.google.com/iam/docs/creating-managing-service-account-keys
$client->setAuthConfig('YOUR_CLIENT_SECRET_FILE.json');
$client->setAccessType('offline');

// Request authorization from the user.
$authUrl = $client->createAuthUrl();
printf("Open this link in your browser:\n%s\n", $authUrl);
print('Enter verification code: ');
$authCode = trim(fgets(STDIN));

// Exchange authorization code for an access token.
$accessToken = $client->fetchAccessTokenWithAuthCode($authCode);
$client->setAccessToken($accessToken);

// Define service object for making API requests.
$service = new Google_Service_YouTube($client);

$queryParams = [
    'id' => 'YOUR_BROADCAST_ID'
];

$response = $service->liveBroadcasts->listLiveBroadcasts('snippet,contentDetails,status', $queryParams);
print_r($response);

【讨论】:

    【解决方案2】:

    在没有 Oauth2 的情况下,我设法以不同的方式获得了 scheduleStartTime 值。

    基本上,我使用了两个 api 调用: 第一个是

    https://youtube.googleapis.com/youtube/v3/search?order=date&part=snippet&channelId=' .$channelId。 '&maxResults=' .$maxResults。 '&eventType=upcoming&type=video&key=' .$key;

    然后对于任何视频 ID,我都会调用视频端点:

    https://youtube.googleapis.com/youtube/v3/videos?part=liveStreamingDetails&id=' .$id。 '&key=' .$key;

    在这里我可以提取任何视频的 scheduleStartTime 值。

    【讨论】:

      猜你喜欢
      • 2020-01-07
      • 2020-07-21
      • 2018-04-10
      • 1970-01-01
      • 2017-04-17
      • 1970-01-01
      • 2016-09-30
      • 1970-01-01
      • 2014-11-20
      相关资源
      最近更新 更多