i know that we can pull the current number of subscribers for a youtube channel using the data API, but is there a way to pull the subscribers we had in the past? for example 7 days back?
Thanks!
i know that we can pull the current number of subscribers for a youtube channel using the data API, but is there a way to pull the subscribers we had in the past? for example 7 days back?
Thanks!
没有内置的方法可以对您的订阅者进行历史查看。您可以做的是在给定日期检索您的订阅者列表,并将其保存在某个地方。然后下周再做一次,比较一下。
API 返回一个 JSON 响应 & 查找将如下所示:
https://www.googleapis.com/youtube/v3/subscriptions?part=snippet&mySubscribers=true&key= {API_KEY_GOES_HERE}
您可以在此处阅读有关文档中的语法和参数的更多信息:链接