如何抓在YouTube的API第3版评论?(How do I fetch comments in v

2019-07-04 00:53发布

如何获取对YouTube API第3版的视频评论? 我一直在试图youtube.activities.listyoutube.videos.list在谷歌API浏览器和大多数其他方法。 我失去了一些东西在这里?

youtube.activities.list似乎是正确的电话,但只能返回自己的上传和播放列表的项目。)

Answer 1:

更新:评论功能现在在数据API V3提供。 http://youtube-eng.blogspot.com/2015/04/manage-comments-with-youtube-data-api-v3.html



Answer 2:

https://www.googleapis.com/youtube/v3/commentThreads?part=snippet%2Creplies&maxResults=20&videoId=Au87oAJ2jeE&key=app-key

结果JSON

{
 "kind": "youtube#commentThreadListResponse",
 "etag": "\"mPrpS7Nrk6Ggi_P7VJ8-KsEOiIw/Q8IErPBy5AB6a2BKgaDaOWcf_jQ\"",
 "pageInfo": {
  "totalResults": 10,
  "resultsPerPage": 20
 },
 "items": [
  {
   "kind": "youtube#commentThread",
   "etag": "\"mPrpS7Nrk6Ggi_P7VJ8-KsEOiIw/bdn5c_ALv5vbJlPCzNuP1B9UqiU\"",
   "id": "z12qxfxr2onpy1b5l04cdfzrgwabir0q4bo",
   "snippet": {
    "channelId": "UCJr72fY4cTaNZv7WPbvjaSw",
    "videoId": "Au87oAJ2jeE",
    "topLevelComment": {
     "kind": "youtube#comment",
     "etag": "\"mPrpS7Nrk6Ggi_P7VJ8-KsEOiIw/JZObCX09D4_6WRoUvqcZuSWtjRw\"",
     "id": "z12qxfxr2onpy1b5l04cdfzrgwabir0q4bo",
     "snippet": {
      "channelId": "UCJr72fY4cTaNZv7WPbvjaSw",
      "videoId": "Au87oAJ2jeE",
      "textDisplay": "Thank you Dan and Envato for creating this video!\ufeff",
      "authorDisplayName": "Randy Taschner",
      "authorProfileImageUrl": "https://lh6.googleusercontent.com/--vE0X3_vDCs/AAAAAAAAAAI/AAAAAAAAAJU/aBCbmKPAMtc/photo.jpg?sz=50",
      "authorChannelUrl": "http://www.youtube.com/channel/UCTRuBHRb4BRFcob-hMj6NnQ",
      "authorChannelId": {
       "value": "UCTRuBHRb4BRFcob-hMj6NnQ"
      },
      "authorGoogleplusProfileUrl": "https://plus.google.com/109363234563168058777",
      "canRate": false,
      "viewerRating": "none",
      "likeCount": 1,
      "publishedAt": "2015-08-16T05:02:25.807Z",
      "updatedAt": "2015-08-16T05:02:25.807Z"
     }
    },
    "canReply": false,
    "totalReplyCount": 0,
    "isPublic": true
   }
  }
}


文章来源: How do I fetch comments in version 3 of the YouTube API?
标签: youtube-api