我知道此问题之前已经得到解答,但我似乎有一个不同的问题。直到几天前,我对YouTube的查询从未出现过问题。然而,现在,每当我查询任何视频上的数据时,实际视频数据的行都会以单个空数组的形式返回。
以下是我的完整代码:
# -*- coding: utf-8 -*-
import os
import google.oauth2.credentials
import google_auth_oauthlib.flow
from googleapiclient.discovery import build
from googleapiclient.errors import HttpError
from google_auth_oauthlib.flow import InstalledAppFlow
import pandas as pd
import csv
SCOPES = ['https://www.googleapis.com/auth/yt-analytics.readonly']
API_SERVICE_NAME = 'youtubeAnalytics'
API_VERSION = 'v2'
CLIENT_SECRETS_FILE = 'CLIENT_SECRET_FILE.json'
def get_service():
flow = InstalledAppFlow.from_client_secrets_file(CLIENT_SECRETS_FILE, SCOPES)
credentials = flow.run_console()
#builds api-specific service
return build(API_SERVICE_NAME, API_VERSION, credentials = credentials)
def execute_api_request(client_library_function, **kwargs):
response = client_library_function(
**kwargs
).execute()
print(response)
columnHeaders = []
# create a CSV output for video list
csvFile = open('video_result.csv','w')
csvWriter = csv.writer(csvFile)
csvWriter.writerow(["views","comments","likes","estimatedMinutesWatched","averageViewDuration"])
if __name__ == '__main__':
# Disable OAuthlib's HTTPs verification when running locally.
# *DO NOT* leave this option enabled when running in production.
os.environ['OAUTHLIB_INSECURE_TRANSPORT'] = '1'
youtubeAnalytics = get_service()
execute_api_request(
youtubeAnalytics.reports().query,
ids='channel==UCU_N4jDOub9J8splDAPiMWA',
#needs to be of form YYYY-MM-DD
startDate='2018-01-01',
endDate='2018-05-01',
metrics='views,comments,likes,dislikes,estimatedMinutesWatched,averageViewDuration',
dimensions='day',
filters='video==ZeY6BKqIZGk,YKFWUX9w4eY,bDPdrWS-YUc'
)
答案 0 :(得分:1)
您可以在Reports: Query首页中看到需要使用新范围的信息:
https://www.googleapis.com/auth/youtube.readonly
代替原来的:
https://www.googleapis.com/auth/yt-analytics.readonly
更改范围后,请重新进行身份验证(删除旧凭据),以使新范围生效。
这在this forum中也得到了确认。
答案 1 :(得分:0)
如果您在oAuth2授权过程中选择了错误的帐户,则可能会发生意外之一。例如,您可能必须在第一个屏幕上获得“帐户”,但随后在第二个屏幕上(在授权过程中)使用“品牌帐户”,而不要使用第一步中的主要帐户,该帐户也在第二步的列表中。
答案 2 :(得分:0)
我遇到了同样的问题,用https://www.googleapis.com/auth/youtube.readonly
范围替换不起作用。
(即使在API网页中发出请求,它也会返回空行。)
相反,在我的情况下,使用https://www.googleapis.com/auth/youtube
范围可以很好地工作。