Youtube API - 获取视频的热门评论

发布于 2024-11-17 14:29:58 字数 293 浏览 1 评论 0原文

是否可以从视频中获取热门评论?也许按点赞数排序?

这是我当前的网址:

http://gdata.youtube.com/feeds/api/videos/'+yt_id+'/comments?alt=json-in-script&callback=?&max-results=50

提前致谢!
彼得

Is it possible to get the top comments from a video? Maybe sorted by number of thumbs up?

This is my current url:

http://gdata.youtube.com/feeds/api/videos/'+yt_id+'/comments?alt=json-in-script&callback=?&max-results=50

Thanks in advance!
Peter

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

女皇必胜 2024-11-24 14:29:58

不幸的是,我认为没有这样的选择。你不能(或者我没有设法让它工作)按评论的评级、喜欢等排序,因为没有像“评级”等评论的gdata标签。 YouTube 目前尚未提供此功能。您可以投票此处

Unfortunately, i think there is no such option. You can´t (or i didn´t manage to get it working) order by rating, likes etc. of comment, because there is no gdata-tag like "rating" etc. for comments. YouTube doesn´t provide this so far. You can vote for it here

黄昏下泛黄的笔记 2024-11-24 14:29:58

是的,我发现按相关性排序是一种很好的方法,例如在 JS 中:

const comments = await axios.get(`https://www.googleapis.com/youtube/v3/commentThreads?key=${YOUR_API_KEY}&textFormat=plainText&**order=relevance**&part=snippet&videoId=${YOUR_VID_ID}&maxResults=100`);

Yes I found that sorting by relevance is a good way of doing this for example in JS:

const comments = await axios.get(`https://www.googleapis.com/youtube/v3/commentThreads?key=${YOUR_API_KEY}&textFormat=plainText&**order=relevance**&part=snippet&videoId=${YOUR_VID_ID}&maxResults=100`);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文