我正在尝试访问Google Analytics(分析)API,并且我的client_secrets文件不断出现此错误:
SystemExit:客户端机密无效: 无效的文件格式。请参见https://developers.google.com/api-client-library/python/guide/aaa_client_secrets对于“ Web”或“已安装”应用程序,期望具有单个属性的JSON对象
这是我使用此文件的一些代码。我已经知道它本身就是JSON文件。
flow = client.flow_from_clientsecrets(
CLIENT_SECRETS_PATH, scope=SCOPES,
message=tools.message_if_missing(CLIENT_SECRETS_PATH))
storage = file.Storage('analyticsreporting.dat')
credentials = storage.get()
if credentials is None or credentials.invalid:
credentials = tools.run_flow(flow, storage, flags)
http = credentials.authorize(http=httplib2.Http())