gpt4 book ai didi

php - Youtube API限制注释

转载 作者:行者123 更新时间:2023-12-03 06:02:19 25 4
gpt4 key购买 nike

我使用以下代码检索最近对视频的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>';
}
?>

我有两个问题:
1)有什么方法可以限制评论数量,因此我只能显示示例10条评论?
2)是否可以排除标记为垃圾邮件的评论?

谢谢。

最佳答案

我不知道垃圾邮件,但您可以限制nr。像这样的客户端解决方案的评论:

$maxcomments = 10; //set max here
$commentcounter = 0; //add this

foreach($comments->entry as $comment)
{
if($commentcounter < $maxcomments)
{
echo '<fieldset>'.$comment->content.'</fieldset>';
}

$commentcounter++;
}

尚未检查,但应该可以。希望对您有所帮助。

关于php - Youtube API限制注释,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13429600/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com