如何修复Google Analytics(分析)示例代码中的标志错误?

时间:2019-07-16 05:25:27

标签: python json google-analytics google-api sample

google API的示例代码文件是从GitHub下载的,并且按照每个步骤操作,会在标志中出现错误,并且不会播种授权的输出。该示例位于标记“标记未使用的变量”中。并缩进“ try”上的错误。

这是Ubuntu 18.04,正在使用python 2.7在Vs代码上编辑代码。我也在虚拟和Anaconda环境上进行了尝试。

def main(argv):
  # Authenticate and construct service.
   service, flags = sample_tools.init(
      argv, 'analytics', 'v3', __doc__, __file__,
      # scope='https://www.googleapis.com/auth/analytics.readonly')
  # Try to make a request to the API. Print the results or handle errors.
  try:
    first_profile_id = get_first_profile_id(service)
    if not first_profile_id:
      print('Could not find a valid profile for this user.')
    else:
      results = get_top_keywords(service, first_profile_id)
      print_results(results)**

我希望输出的结果是在Google Analytics(分析)上创建的项目的授权,但实际输出是在标志和缩进中出现错误

0 个答案:

没有答案