首页 > 解决方案 > Youtube API 获取 Livestream scheduledStartTime

问题描述

我需要从我的 Youtube 频道获取即将到来的直播列表,并将它们展示给我的网站访问者。

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

这样做的唯一方法是使用 oauth 身份验证,因此请求将是带有令牌的“GET 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 页面上显示响应的编码示例,而无需安装任何库。

感谢您的帮助。

标签: phpoauth-2.0youtube-apigoogle-oauthyoutube-data-api

解决方案


Here is a basic example of the youtube.liveBroadcasts.list method.

<?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);

推荐阅读