使用 youtube api v3 Android 对 youtube 视频发表评论

2024-01-15

如何通过我的应用程序添加对特定 YouTube 视频的评论?使用 youtube api v3。 我可以使用以下网址获取 YouTube 视频的评论:

http://gdata.youtube.com/feeds/api/videos/ http://gdata.youtube.com/feeds/api/videos/“+VIDEO_ID+”/comments?prettyprint=true

我怎样才能发表评论?


You can use you tube "CommentThreads: insert" to post your comment via app

https://developers.google.com/youtube/v3/docs/commentThreads/insert

以下是api调用

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

API 调用的正文是:

Body

    { "snippet":{
      "topLevelComment":{
       "snippet":{
        "textOriginal": "YOUR_COMMENT_HERE",
        "videoId": "VIDEO_ID"
       }
      }
     }
    }

另外添加不要忘记添加以下范围https://www.googleapis.com/auth/youtube.force-ssl https://www.googleapis.com/auth/youtube.force-ssl

本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

使用 youtube api v3 Android 对 youtube 视频发表评论 的相关文章

随机推荐