YouTube XML Feed错误

时间:2011-08-17 13:48:21

标签: php xml api rss youtube

我在一个网站上有一个页面,它从YouTube上提取我的收藏品并将它们嵌入到网站中。

问题是它在80%的时间都在工作,但另外20%的时间我在页面上出现错误 - 代码中的任何内容都没有改变导致这种情况,所以我想知道可能导致什么这个,或者如果有更好的方法来做我正在做的事情......

检索XML Feed时,我遇到的错误是403 Forbidden ...这就是它的样子(注意:行号不完全匹配,因为我简化了下面的代码示例。

有问题的XML Feed在这里: https://gdata.youtube.com/feeds/api/users/umarchives/favorites

Warning: simplexml_load_file(https://gdata.youtube.com/feeds/api/users/umarchives/favorites) [function.simplexml-load-file]: failed to open stream: HTTP request failed! HTTP/1.0 403 Forbidden in /mnt/stor3-wc2-dfw1/web/content/videos.php on line 42

Warning: simplexml_load_file() [function.simplexml-load-file]: I/O warning : failed to load external entity "https://gdata.youtube.com/feeds/api/users/umarchives/favorites" in /mnt/stor3-wc2-dfw1/web/content/videos.php on line 42

Warning: Invalid argument supplied for foreach() in /mnt/stor3-wc2-dfw1/web/content/videos.php on line 47

这是我正在使用的代码:

<?php
    // set feed URL
    $YouTubeUsername = "umarchives";

    $feedURL = "https://gdata.youtube.com/feeds/api/users/".$YouTubeUsername."/favorites";

    // read feed into SimpleXML object
    $sxml = simplexml_load_file($feedURL);

    // iterate over entries in feed
    foreach ($sxml->entry as $entry) {  

    // get nodes in media: namespace for media information
    $media = $entry->children('http://search.yahoo.com/mrss/');
    $attrs = $media->group->content->attributes();

    $videoURL = $attrs['url'];
    $videoURL = preg_replace('/\?.*/', '', $videoURL);
    $videoURL = str_replace("/v/","/embed/",$videoURL);

    $videoTitle = $media->group->title;

    echo "<iframe class='youtube-player' width='300' height='225' src='$videoURL'></iframe>\n";
    echo "<br>\n";

    }

    ?>

3 个答案:

答案 0 :(得分:3)

您应该验证$sxml = simplexml_load_file($feedURL); per the Google error validation docs的结果。然后,您可以打印出403代码附带的实际消息,或者可能决定重试该请求。如果它是随机发生的,我的猜测是配额限制问题,但实际的错误信息可能会告诉您确切的信息。

答案 1 :(得分:0)

MYUSERNAME不是有效的用户名。添加您自己的YouTube用户名!

答案 2 :(得分:0)

当我在浏览器中调用您的Feed网址时(https://gdata.youtube.com/feeds/api/users/wfptv/favorites),我收到此错误:

 Favorites of requested user are not public.

公开您的Feed,失败应该消失。