我正在使用以下PHP代码来获取特定视频的评论:
<?php
$vid = "G0k3kHtyoqc";
$feedURL = 'http://gdata.youtube.com/feeds/api/videos/' . $vid;
$entry = simplexml_load_file($feedURL);
$gd = $entry->children('http://schemas.google.com/g/2005');
if($gd->comments->feedLink){
$attrs = $gd->comments->feedLink->attributes();
$commentsURL = $attrs['href'];
$commentsCount = $attrs['countHint'];
}
if($commentsURL && $commentsCount > 0){
$commentsFeed = simplexml_load_file($commentsURL);
echo "<ol>";
foreach($commentsFeed->entry as $comment){
echo "<li>";
echo "<a target='_blank' href='http://www.youtube.com/user/" . $comment->author->name . "'>";
echo $comment->author->name;
echo "</a>";
echo " - " . $comment->content;
echo "</li>";
}
echo "</ol>";
}
?>
上面代码的问题是它只获得最近的24条评论。我需要一种方法来对所有评论进行分页。
非常感谢您的帮助。
由于
答案 0 :(得分:1)
使用“ start-index ”参数。从1开始,根据注释计数,将[comments-count]添加到start-index参数。
例如: 评论的第一页,每页收到25条评论,使用max-results = 25和start-index = 1 第二页评论,每页收到25条评论,使用max-results = 25和start-index = 26
等等=)
问候!