googleapiclient.errors.HttpError:请求https://www.googleapis.com/gmail/v1/users/me/watch时出现HttpError 500'后端错误'

时间:2018-10-25 21:14:14

标签: gmail-api google-apis-explorer

运行以下基本代码以执行GMail API watch()方法时。发生“后端错误”。在客户端计算机上运行以及直接在Google Cloud上作为Cloud Function运行时都是如此。

from google.oauth2 import service_account
import googleapiclient.discovery

SCOPES = ["https://mail.google.com/"]
SERVICE_ACCOUNT_FILE = '<JSON KEY FILE REMOVED>'
TARGET='<GSUITE DOMAIN USER EMAIL ADDRESS>'
credentials = service_account.Credentials.from_service_account_file(SERVICE_ACCOUNT_FILE, scopes=SCOPES)
credentials_delegated = credentials.with_subject(TARGET)
service = googleapiclient.discovery.build('gmail', 'v1', credentials=credentials_delegated)
val = { 'topicName': '<TOPIC NAME COPIED FROM GCLOUD PUB/SUB>' }
watch_resp = service.users().watch(userId='me', body=val).execute()
print(watch_resp)

其他GMail API(例如service.users().getProfile(userId='me').execute())可以正常工作。确保服务帐户和委派的用户具有发布/订阅发布者角色,并且主题名称正确并且已经创建之后,就会发生此错误。错误的确切输出如下:

Traceback (most recent call last):
  File "test.py", line 12, in <module>
    watch_resp = service.users().watch(userId='me', body=val).execute()
  File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/googleapiclient/_helpers.py", line 130, in positional_wrapper
    return wrapped(*args, **kwargs)
  File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/googleapiclient/http.py", line 842, in execute
    raise HttpError(resp, content, uri=self.uri)
googleapiclient.errors.HttpError: <HttpError 500 when requesting https://www.googleapis.com/gmail/v1/users/me/watch?alt=json returned "Backend Error">

0 个答案:

没有答案