我现在有点迷路了。我想使用Youtube Api获取所有登录用户的订阅,并将其显示为列表,但我完全迷失了方向。我正考虑使用批处理请求,但我甚至不知道如何开始实现它。有什么建议吗?
更新使用Zend框架-YouTube数据API。它不需要任何身份验证。
使用
1) 从下载Zend Framework 1.12.3 Minimal
http://framework.zend.com/downloads/latest
2) 打开zip
的包装。将文件夹Zend
复制到项目文件夹(或仅复制到ZendGdata
)。
3) 包括在index.php
(例如)类Zend_Gdata_YouTube
:中
<?php
require_once 'Zend/Gdata/YouTube.php';
$username = 'USERNAME'; // set need YouTube user
$yt = new Zend_Gdata_YouTube();
$subscriptionFeed = $yt->getSubscriptionFeed($username);
foreach ($subscriptionFeed as $subscriptionEntry) {
echo $subscriptionEntry->title->text . "n";
}
?>
编辑1
使用Youtube API
。值机柜台php.ini
:
extension=php_openssl.dll
比使用:
$userID = 'YouTubeUsedId';
$url_api = 'https://gdata.youtube.com/feeds/api/users/'.$userID.'/subscriptions?v=2';
$subs_content = file_get_contents($url_api);
在使用订阅获得xml
之后,使用DomDocument
(例如)&获取用户列表。根据获取标签https://developers.google.com/youtube/2.0/developers_guide_protocol_subscriptions#Retrieving_subscriptions
编辑2(注意事项)
默认情况下,YouTube只返回视频源中的前25行。要进行偏移,请使用下一个:
$url='https://gdata.youtube.com/feeds/api/users/'.$userID.'/subscriptions?start-index=25
&max-results=25
&v=2';
start-index
从索引开始定义
max-results
定义offest(注意:最大值=50)。
查看更多https://developers.google.com/youtube/2.0/reference?hl=it-IT&csw=1#最大结果