0

公式に文書化されているように、すべてのクライアント/SDK を使用するアプリケーションを作成しました。

credentials = GoogleCredentials \
    .get_application_default() \
    .create_scoped('https://www.googleapis.com/auth/drive')
drive = discovery.build(
    'drive',
    'v3',
    http=self.credentials.authorize(Http())
)
drive.files() \
    .get(fileId=file_id) \
    .execute()

パネルから生成されたサービス アカウントを使用してローカルで問題なく動作しますが、アプリケーションをデプロイすると、AppEngine フレキシブル環境内のサービス アカウントで問題が発生します。

17:15:04.000 /env/lib/python3.4/site-packages/oauth2client/contrib/gce.py:99: UserWarning: You have requested explicit scopes to be used with a GCE service account. 17:15:04.000 Using this argument will have no effect on the actual scopes for tokens 17:15:04.000 requested. These scopes are set at VM instance creation time and 17:15:04.000 can't be overridden in the request. 17:15:04.000 17:15:04.000 warnings.warn(_SCOPES_WARNING) 17:15:04.000 INFO:googleapiclient.discovery:URL being requested: GET https://www.googleapis.com/discovery/v1/apis/drive/v3/rest 17:15:04.000 INFO:oauth2client.client:Attempting refresh to obtain initial access_token 17:15:04.000 INFO:googleapiclient.discovery:URL being requested: GET https://www.googleapis.com/drive/v3/files/0B0Kn....M1pBNFE?alt=json 17:15:04.000 ERROR:root:Failed to retrieve file 0B0K....M1pBNFE. Is it shared with me? project-id@appspot.gserviceaccount.com 17:15:04.000 Traceback (most recent call last): 17:15:04.000 File "/home/vmagent/app/script.py", line 45, in get 17:15:04.000 .execute() 17:15:04.000 File "/env/lib/python3.4/site-packages/oauth2client/util.py", line 135, in positional_wrapper 17:15:04.000 return wrapped(*args, **kwargs) 17:15:04.000 File "/env/lib/python3.4/site-packages/googleapiclient/http.py", line 760, in execute 17:15:04.000 raise HttpError(resp, content, uri=self.uri) 17:15:04.000 googleapiclient.errors.HttpError: <HttpError 403 when requesting https://www.googleapis.com/drive/v3/files/0B0Kn....M1pBNFE?alt=json returned "Insufficient Permission">

権限を確認しましたが、すべて設定されています。この問題は、スコープ資格情報を作成しようとしたときに表示される「この引数を使用しても効果がありません...」というメッセージが原因である可能性があります。

4

1 に答える 1

1

以前のコメントで述べたように、これは既知の問題です。araf...@google.comで説明されているように、フレキシブル環境の App Engine インスタンスは、アプリケーションのデフォルトの資格情報として uderlying GCE VM の資格情報を想定しているようです。

当面の回避策として、サーバー間アプリケーションでの OAuth 2.0 の使用に従って、アプリに保存されている JSON キーとしてエクスポートされた、手動で作成されたサービス アカウントを使用できます。

この問題の影響を受ける人、または回避策が無効な人については、この問題に関する関連情報を投稿してください

于 2016-06-13T17:08:04.990 に答える