如何使用已弃用的 YouTube 数据 API 获取视频评论?

How can I use the deprecated YouTube Data API to get video comments?

我有一个应用程序,我们想在其中显示 YouTube 视频评论。在 YouTube API 2 中支持检索视频评论 - 此功能在 API 3 中不再可用。

如文档中所述:

You can continue using the v2 API for comments and uploading video captions for now, and we'll be adding this functionality into the v3 API soon. While we don’t have specific dates yet, we will release that functionality so that developers have as much time as possible to migrate to v3.

...there will not be 100% feature parity between the v2 and v3 APIs. Please see the v3 API documentation for more details as to what functionality is supported in v3.

据我了解,您需要先通过 Google 开发者控制台为您希望首先使用的 API 注册您的应用,并且不再有添加 YouTube API 2. 我尝试向旧端点发送请求

https://gdata.youtube.com/feeds/api/videos/VideoIdHere/comments

但得到了以下回复

No longer available

有没有办法让我仍然可以使用 API 2 来检索视频评论?我怎样才能做到这一点?

编辑:

YouTube 视频评论现在可在以下端点使用

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

查看文档 here

不,API v2 已完全弃用,不再可用。您将需要使用 API v3.

调用示例:https://www.googleapis.com/youtube/v3/commentThreads?part=snippet%2C+replies&maxResults=50&videoId=VIDEO_ID&order=time&textFormat=plainText&key=API_KEY