以下のコードを使用して、最近の YouTube コメントをビデオに取得します。
<?php
$videoId='lWA2pjMjpBs';
$url="http://gdata.youtube.com/feeds/api/videos/{$videoId}/comments";
$comments=simplexml_load_file($url);
foreach($comments->entry as $comment)
{
echo '<fieldset>'.$comment->content.'</fieldset>';
}
?>
2 つの質問があります: 1) コメントの数を制限する方法はありますか? 2) スパムとしてマークされたコメントを除外することは可能ですか?
ありがとう。