我已发出 GET 请求,试图在我的 youtube 频道上获得我的观看次数和订阅者,我获得了 200 状态,但结果为 0
startDate <- "2020-05-09"
endDate <- "2020-05-24"
metrics <- "views,subscribersGained"
url <- paste0("https://youtubeanalytics.googleapis.com/v2/reports?",
"&ids=channel%3D%3DMINE",
"&metrics=", metrics,
"&startDate=", startDate,
"&endDate=", endDate)
temp <- httr::GET(url, token) #Authenticating token worked flawlessly
stop_for_status(temp)
fin <- fromJSON(rawToChar(temp$content))
这个调用是正确的,返回了 0 个视图和 0 个订阅者,这是不可能的。
我什至去了https://developers.google.com/youtube/analytics/reference/reports/query并测试了 api,它返回了 0 个视图,并获得了 0 个订阅者,但是当我登录 YouTube Studio 时,它告诉我我有 955.5k 观看次数。
我的电话在技术上是正确的但缺少什么吗?