我已发出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,该api返回了0次观看,并获得了0个订阅者,但是当我登录YouTube Studio时,它告诉我我有955.5k次观看。
从技术上讲我的电话是否正确,但是缺少某些内容?
答案 0 :(得分:0)
我发现问题在于,在进行身份验证时,我将单击我的帐户,然后可以选择单击我的电子邮件或YouTube频道。我自然选择YouTube是因为我想要YouTube号码,但显然那是错误的电话。当我单击电子邮件时,它对我来说正常工作。