How do I fetch comments in version 3 of the YouTube API?

后端 未结 2 526
无人及你
无人及你 2020-12-03 19:03

How do I fetch comments for a video in version 3 of the YouTube API? I\'ve been trying youtube.activities.list and youtube.videos.list and most oth

相关标签:
2条回答
  • 2020-12-03 19:18

    Update: Comments feature is now available in Data API v3. http://youtube-eng.blogspot.com/2015/04/manage-comments-with-youtube-data-api-v3.html

    0 讨论(0)
  • 2020-12-03 19:23
    https://www.googleapis.com/youtube/v3/commentThreads?part=snippet%2Creplies&maxResults=20&videoId=Au87oAJ2jeE&key=app-key
    

    result 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
       }
      }
    }
    
    0 讨论(0)
提交回复
热议问题