Google AnalyticsAPI(适用于Python的客户端库) - 错误处理

时间:2016-02-24 17:34:11

标签: python error-handling google-analytics google-analytics-api google-api-python-client

我在Google AnalyticsAPI(Python)中使用批处理请求。链接到批处理:https://developers.google.com/api-client-library/python/guide/batch 当通过.add()的所有记录都正确(有效)时,批处理工作正常。当一个或多个值无效时,所有记录的批处理都将失败。

我添加了一个回调函数来处理错误,我看到批处理中的所有记录的BAtching请求都失败了(而不是只有无效的记录)。 有没有办法处理错误并跳过无效的行/记录并继续批处理中的其余记录?

以下是我使用的示例代码和错误消息:

def add_user_callback(request_id, response, exception):
    if exception:
        print "error :",exception
    else:
        print "successful"

def main():
    ## code to set the account, property and other variables
    batch.add(service.management().webpropertyUserLinks().insert(
        accountId=account_id,
        webPropertyId=property_at,
        body={
                    'permissions': {
                        'local': [
                            'READ_AND_ANALYZE'
                        ]
                    },
                    'userRef': {
                        'email': 'valid_address@domain.com'
                    }
                }))

    batch.add(service.management().webpropertyUserLinks().insert(
        accountId=account_id,
        webPropertyId=property_at,
        body={
                    'permissions': {
                        'local': [
                            'READ_AND_ANALYZE'
                        ]
                    },
                    'userRef': {
                        'email': 'invalid_address@ddomain.com' ## i used a dummy id : pppp@domain.com
                    }
                }))
    batch.execute()


#Error :
#error : <HttpError 400 when requesting https://www.googleapis.com/analytics/v3/management/accounts/62974313/webproperties/UA-62974313-35/entityUserLinks?alt=json returned "Value for field user.email = ppppp@domain.com is not valid.">
#error : <HttpError 400 when requesting https://www.googleapis.com/analytics/v3/management/accounts/62974313/webproperties/UA-62974313-11/entityUserLinks?alt=json returned "Value for field user.email = ppppp@domain.com is not valid.">

如果您需要更多信息,请与我们联系。

1 个答案:

答案 0 :(得分:0)

假设您有一个要添加到列表users中存储的配置文件的用户列表。 您可以使用以下回调函数删除不良电子邮件:

def call_back(request_id, response, exception):
  if exception is not None:
    if isinstance(exception, HttpError):
      message = json.loads(exception.content)['error']['message']
      bad = 'Value for field user.email = (\S*) is not valid.'
      match = re.match(bad, message)
      if match:
        bad_user = match.group(1)
        if bad_user in users:
          users.remove(bad_user)
  else:
    print response

在所有失败的呼叫返回后,您可以通过循环用户并构建新的批量请求来重新尝试批量呼叫:

batch = BatchHttpRequest(callback=call_back)
for user in users:
    request = analytics.management().profileUserLinks().insert(
        accountId=ACCOUNT_ID,
        webPropertyId=PROFILE_ID,
        profileId=profile,
        body={
            'permissions': {'local': ['READ_AND_ANALYZE']},
            'userRef': {'email': user}
      }
    )
    batch.add(request, request_id=PROFILE_ID + user)
batch.execute()