我发现我可以按ViewCount(点击数)获取YouTube频道的视频列表,并通过以下链接限制搜索结果
http://gdata.youtube.com/feeds/api/users/edbassmaster/uploads?orderby=viewCount&max-results=5
这当然会返回一些xml提要代码.我正在尝试将这些视频在div中列出到我的网站上.
我尝试过的
<?php
$list = Array();
//get the xml data from youtube
$url = "http://gdata.youtube.com/feeds/api/users/edbassmaster/uploads?orderby=viewCount&max-results=5";
$xml = simplexml_load_file($url);
//load up the array $list['title'] = $xml->title[0];
$list['title'] = $xml->title[0];
echo $list['title'];
?>
到目前为止,如果我尝试$xml-> title [1],那只会给我XML提要的标题.它不返回任何东西.如何使用该XML Feed列出标题并将其(href)链接到视频?我正在尝试从xml源中检索2件事,视频标题和url.
谢谢.
解决方法:
像这样:
<?php
$url = "http://gdata.youtube.com/feeds/api/users/edbassmaster/uploads?orderby=viewCount&max-results=5";
$xml = simplexml_load_file($url);
foreach($xml->entry as $entry){
echo "Title: ".$entry->title."<br />";
echo "Link :".$entry->link['href']."<br />";
}
?>