Youtube 数据 API 通过频道 ID 获取订阅者列表
Youtube Data API get subscriber list by channel id
有没有办法从具有频道 ID 的频道中获取关注者列表?我找到了这个片段,但它仅用于订阅者计数。
https://www.googleapis.com/youtube/v3/channels?part=statistics&id=<channel_id>&key=<api_key>
有人有这方面的经验吗?
此致
从 documentation 开始,有一个过滤方法可用于检索完整的订阅者列表,该列表没有 return 特定顺序,并且不会限制可以订阅的订阅者数量被检索。
mySubscribers 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 subscribers of the authenticated user in no particular
order.
有没有办法从具有频道 ID 的频道中获取关注者列表?我找到了这个片段,但它仅用于订阅者计数。
https://www.googleapis.com/youtube/v3/channels?part=statistics&id=<channel_id>&key=<api_key>
有人有这方面的经验吗?
此致
从 documentation 开始,有一个过滤方法可用于检索完整的订阅者列表,该列表没有 return 特定顺序,并且不会限制可以订阅的订阅者数量被检索。
mySubscribers 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 subscribers of the authenticated user in no particular order.