我需要帮助才能使用新的API版本从特定用户检索YouTube视频。
我已在console.developers.google.com
上创建YouTube数据API 浏览器OAuth 和公开API访问。
在我使用此代码检索最新的6个视频之前:
$feedURL = 'http://gdata.youtube.com/feeds/api/users/USERNAME/uploads?max-results=6';
$sxml = simplexml_load_file($feedURL);
foreach ($sxml->entry as $entry) {
$watch = (string)$media->group->player->attributes()->url;
}
如何使用API 3更新此代码?
答案 0 :(得分:2)
我一直在.net上做类似的事情,它不像以前那么简单。
现在需要几个额外的步骤:
第1步:您需要通过以下方式获取用户的channelId:
https://www.googleapis.com/youtube/v3/channels?part=snippet&forUsername= {0}& key = {1} - 其中{0}是USERNAME,密钥是API密钥
第2步:您可以通过以下方式获取视频列表:
https://www.googleapis.com/youtube/v3/search?order=date&part=snippet&channelId= {0}&安培;键= {1}
第3步:
https://www.googleapis.com/youtube/v3/videos?part=snippet,contentDetails,player&id= {0}& key = {1} - 其中id是从步骤2返回的videoId。
希望有所帮助。
答案 1 :(得分:0)
它实际上是一个两步过程。
https://developers.google.com/youtube/v3/guides/implementation/videos#videos-retrieve-uploads
第1步:检索频道上传视频的播放列表ID
第2步:检索已上传视频的列表
您可以链接这些请求。所以第二个请求可以是1.requests的回调函数。
答案 2 :(得分:0)
更新后的答案-2018
<?php
/**
* Gets the latest YouTube channel video.
*/
class Youtube
{
/**
* Channel ID or Channel User.
*
* @access private
* @var string
*/
private $channel = "";
/**
* Class constructor.
*
* @param string $channel Channel ID or Channel User.
* @access public
*/
public function __construct($channel)
{
$this->channel = $channel;
}
/**
* Gets the video.
*
* @access public
* @return array
*/
public function video() : array
{
return array( 'title' => $this->getVideo('title'), 'id' => $this->getVideo('id') );
}
/**
* Gets the last video.
*
* @param string $property 'title' or 'id'
* @access private
* @return string
*/
private function getVideo($property) : string
{
$xml = null;
if ( @fopen('https://www.youtube.com/feeds/videos.xml?user=' . $this->channel, 'r') !== false ) {
$xml = simplexml_load_file('https://www.youtube.com/feeds/videos.xml?user=' . $this->channel); // Channel User
} elseif ( @fopen('https://www.youtube.com/feeds/videos.xml?channel_id=' . $this->channel, 'r') !== false ) {
$xml = simplexml_load_file('https://www.youtube.com/feeds/videos.xml?channel_id=' . $this->channel); // Channel ID
}
if ($xml !== null) {
$namespaces = $xml->getNamespaces(true);
$video = $xml->entry[0]->children($namespaces['yt']);
if ($property === 'title') {
return $xml->entry[0]->title;
} elseif ($property === 'id') {
return $video->videoId;
}
} else {
return "";
}
}
}
$channel = 'UChsXToK8E4U8lqXaabPwlBw'; // Channel ID or Channel User.
$Youtube = new Youtube($channel);
$video = $Youtube->video();
?>
<h1><?php echo $video['title']; ?></h1>
<iframe width="560" height="315" src="https://www.youtube.com/embed/<?php echo $video['id']; ?>?rel=0&showinfo=0" frameborder="0" allowfullscreen></iframe>