3

メールで受信したすべての新しい受信トレイ メッセージに関するプッシュ通知を取得しようとしています。pubsub doc に記載されているように、pubsub クライアントを構成しました。コードは次のとおりです。

import httplib2

from apiclient import discovery
from oauth2client import client as oauth2client
from lib.common.models.main.users import User

from oauth2client.client import SignedJwtAssertionCredentials,\
    AccessTokenRefreshError

PUBSUB_SCOPES = ['https://www.googleapis.com/auth/pubsub']

def create_pubsub_client(http=None):
    credentials = oauth2client.GoogleCredentials.get_application_default()
    if credentials.create_scoped_required():
        credentials = credentials.create_scoped(PUBSUB_SCOPES)
    if not http:
        http = httplib2.Http()
    credentials.authorize(http)

    return discovery.build('pubsub', 'v1', http=http)

pubsub = create_pubsub_client()

topic = 'projects/<project-name>/topics/<Topic-name>'
policy = {
  'policy': {
    'bindings': [{
      'role': 'roles/pubsub.publisher',
      'members': ['serviceAccount:<my-service-account>'],
    }],
  }
}
resp = pubsub.projects().topics().setIamPolicy(resource=topic, body=policy).execute()

request = {
  'labelIds': ['INBOX'],
  'topicName': 'projects/<project-name>/topics/<Topic-name>'
}

f = file('link-to.p12', 'rb')
key = f.read()
f.close()

credentials = SignedJwtAssertionCredentials(
    'service-account-email',
    key,
    scope='https://mail.google.com/',
)

user = User.query.filter(User.id == 143).first()
accesskey = user.get_access_key(True)
credentials.access_token = accesskey['key']

service = discovery.build('gmail','v1',credentials=credentials)
service.users().watch(userId='me', body=request).execute()

上記のプログラムを実行すると、次のエラーが発生します。

トレースバック (最新の呼び出しが最後): ファイル "/home/kmittal/workspace/engine/workers/newPubSubClient.py"、82 行目、service.users().watch(userId='me', body=request).execute 内() ファイル "/usr/local/lib/python2.7/dist-packages/oauth2client/util.py" の 135 行目、positional_wrapper で return wrap(*args, **kwargs) ファイル "/usr/local/lib/ python2.7/dist-packages/googleapiclient/http.py", 行 723, in execute raise HttpError(resp, content, uri=self.uri) googleapiclient.errors.HttpError: https://www.googleapis.com/gmail /v1/users/me/watch?alt=json が「無効な topicName が projects/SOME_ANOTHER_PROJECT/topics/* と一致しません」を返しました">

4

1 に答える 1