Youtube API v3获得评论

时间:2015-06-02 07:32:02

标签: google-api youtube-api

我正在使用Comments: list方法

请求

https://www.googleapis.com/youtube/v3/comments?part=snippet&parentId=ay4MKe1u7Ec&key=`{MY_KEY}`

我使用API​​获取评论返回此

{
 "kind": "youtube#commentListResponse",
 "etag": "\"xmg9xJZuZD438sF4hb-VcBBREXc/pGLBhpjR05yQoJV31WoAx2PEFVw\"",
 "items": []
}

1 个答案:

答案 0 :(得分:11)

仅当您需要获取有关您已经知道注释ID的注释的其他信息时才会使用comments-> list方法...或者如果您要获取有关注释的详细信息,请使用您的网址这是对parentID的回复。换句话说,您不能将videoID放入comments->列表方法中。

你想要的是commentThreads-> list endpoint:

https://www.googleapis.com/youtube/v3/commentThreads?part=snippet&videoId=ay4MKe1u7Ec&key={YOUR_API_KEY}

这将为您提供带有ID的所有评论...您可以获取这些ID,然后通过comments->列表端点运行它们以获得更详细的信息。