您能否获得用户订阅的 YouTube 频道列表?

Can you get a list of YouTube channels to which a user is a subscriber?

我对 YouTube 数据还很陌生API,不确定是否可以获得已登录用户订阅的频道列表?

我看到有可能获得以下信息:使用我的参数检索订阅经过身份验证的用户频道的频道列表。 https://developers.google.com/youtube/v3/docs/subscriptions/list

但是,我很好奇看到用户的订阅而不是频道。

非常感谢任何形式的帮助。

您的阅读(引用):

Using mine parameter to retrieve a list of channels that subscribe to the authenticated user's channel.

不正确。

Subscriptions.list API端点的请求参数mine指定为:

mine boolean
This parameter can only be used in a properly authorized request. Set this parameter's value to true to retrieve a feed of the authenticated user's subscriptions.

因此,使用 mine=true 查询 Subscriptions.list 将 return 您(经过身份验证的用户)订阅的频道列表。

反之——即对于订阅您频道的频道列表——还有两个其他请求参数:myRecentSubscribers and mySubscribers.