问题描述
目前,我正在通过以下请求获取每日订户信息:
Currently I am retrieving daily subscriber information with the following request:
var videoOptions = {
'part': 'snippet,contentDetails,statistics',
'id': videoIds
};
// Send request
youtube.videos.list(videoOptions, (err, videoDetails) => {});
我的问题是,有没有一种方法可以通过Data API或Analytics API获取历史订阅者信息?
My question is there a way to get historical subscriber information either through the Data API or Analytics API?
我看到有一种方法可以查看一段时间内获得或丢失的潜艇,但是我不知道要与之进行比较的基础是什么.
I see there is a way to see subs gained or lost over a period of time but I don't know what the base is to compare against:
https://www.googleapis.com/youtube/analytics/v1/reports?ids=channel%3D%3D{channelID}&start-date=2017-07-31&end-date=2017-08-01&&metrics=subscribersLost%2CsubscribersGained
推荐答案
根据您的订户基础,您可以尝试检查用户何时开始在 https://www.youtube.com/subscribers 也许这可以提供一些见解,并且可以计算返回的行数/用户数以指示历史活动.
Depending on how large your subscriber base is, you could try checking the list of when users started subscribing at https://www.youtube.com/subscribersPerhaps this can offer some insight, and the number of rows/users returned can be counted to give an indication of historical activity.
这篇关于有没有办法获取历史YouTube订阅者信息?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!