2

https://code.google.com/p/google-api-python-client/source/browse/samples/service_account/にリストされている例に似たコードを使用して、受信トレイからメッセージのリストを取得しようとしていますタスク.py :

import httplib2

from apiclient.discovery import build
from oauth2client.file import Storage
from oauth2client.client import SignedJwtAssertionCredentials

SERVICE_ACCOUNT_ID="10*0@developer.gserviceaccount.com"
KEY_FILE="/Users/*/gmail-sessionid-privatekey.p12"
KEY_SECRET="notasecret"

f = open("/Users/*/gmail-sessionid-privatekey.p12")
key = f.read()
f.close()

credentials = SignedJwtAssertionCredentials(
    SERVICE_ACCOUNT_ID, key, scope="https://www.googleapis.com/auth/gmail.readonly")
http = httplib2.Http()
http = credentials.authorize(http)
service = build("gmail", "v1", http=http)

response = service.users().messages().list(userId='me', q='').execute(http=http)
messages = response['messages']
print messages

私が得る応答は次のとおりです。

Traceback (most recent call last):
  File "service.py", line 21, in <module>
    response = service.users().messages().list(userId='me', q='').execute(http=http)
  File "/Library/Python/2.7/site-packages/oauth2client/util.py", line 132, in positional_wrapper
    return wrapped(*args, **kwargs)
  File "/Library/Python/2.7/site-packages/apiclient/http.py", line 723, in execute
    raise HttpError(resp, content, uri=self.uri)
apiclient.errors.HttpError: <HttpError 500 when requesting https://www.googleapis.com/gmail/v1/users/me/messages?q=&alt=json returned "Backend Error">

私が間違っていることを見つけようとしていますか?これは、私が作成できるサービス アカウントの最も単純な例のようです。

ありがとう!

4

1 に答える 1

4

誰のメールボックスにアクセスしようとしていますか? このエラーは、サービス アカウント (「10*0@developer.gserviceaccount.com」) に Gmail メールボックスがないことを示していると思います。郵便物。

サービス アカウントを使用して、管理しているドメイン全体のユーザーのメールボックスにアクセスする場合は、他のコメント投稿者が参照した回答を参照してください:サービス アカウントを使用して GMAIL API にアクセスできますか?

于 2014-07-22T17:04:07.503 に答える