访问视频评论

时间:2016-06-10 15:21:30

标签: youtube-api

我无法找到从youtube视频访问评论的方法。 我遇到的最接近的事情告诉我,该功能是谷歌+唯一的api电话。 运用 https://developers.google.com/youtube/v3/docs/comments/list#try-it 我得到

  • SHOW HEADERS - {  “错误”:{ “错误”:[    { “域名”:“youtube.comment”, “reason”:“operationNotSupported”, “message”:“ID过滤器仅与基于Google+的评论兼容。”,   “locationType”:“参数”,   “location”:“id”  } ]  “代码”:400, “消息”:“ID过滤器仅与基于Google+的评论兼容。” } }

1 个答案:

答案 0 :(得分:1)

您可以使用CommentThreads:list返回与API请求参数匹配的所有注释线程的列表。

HTTP请求

GET https://www.googleapis.com/youtube/v3/commentThreads

如果响应成功,则方法返回具有以下结构的响应主体:

{
"kind": "youtube#commentThreadListResponse",
"etag": etag,
"nextPageToken": string,
"pageInfo": {
"totalResults": integer,
"resultsPerPage": integer
},
"items": [
commentThread Resource
]
}

以下是使用不同支持的编程语言的YouTube API示例代码:https://developers.google.com/youtube/v3/docs/commentThreads/list#examples

找到此Stack Overflow相关故障单,讨论如何通过YouTube API获取评论:How to get comments through Youtube Data API v3 / JSOUP parsing?