0

Google App EngineでGoogle Slides APIを使用しようとしていますが、Googleコードサンプル(特にOAuth2 &のApp EngineのSlides API)を使用していますが、問題を抱えているGoogle Play APIを使用したHTTPError 401とApp EngineのOAuth2

ここに私のApp Engineコードがあり、不要な塊が取り除かれています(すべてmain.appにあります)。私がやっていることは、HTMLフォームから文字列をポストしてから空のプレゼンテーションを作成しようとしていることです。私は既に、私が試作した簡単なスクリプトでSlides APIを使用しました。私は今、App Engineアプリケーションを介してこのセルフサービスを提供しようとしていますが、それが私の邪魔になる認証の変化です。

from googleapiclient import discovery 
from oauth2client import client 
from oauth2client.contrib import appengine 
from google.appengine.api import memcache 

CLIENT_SECRETS = os.path.join(os.path.dirname(__file__), 'client_secrets.json') 
MISSING_CLIENT_SECRETS_MESSAGE = """[omitted]""" % CLIENT_SECRETS  

http = httplib2.Http() 
service = discovery.build('slides', 'v1', http=http) 
decorator = appengine.OAuth2DecoratorFromClientSecrets(
    CLIENT_SECRETS, 
    scope='https://www.googleapis.com/auth/presentations https://www.googleapis.com/auth/drive', 
    message=MISSING_CLIENT_SECRETS_MESSAGE) 

class SlideBuilder(webapp2.RequestHandler): 

    @decorator.oauth_required 
    def post(self): 
    programslug = self.request.get('programid') 
    presoname = str(programslug) + ' Mentors' 

    presentationbody = { 
     'title': presoname 
    } 
    presentation = service.presentations().create(body=presentationbody).execute() 

は、私はAPIコンソールから直接最新たclient_secrets.jsonをダウンロードしたことを指摘したい、そのためには、CLIENT_SECRETSのために正しく一致している必要があります。

私は(のdevのサーバー上で、それがライブのアプリにもあります)取得していますエラーは、この次のとおりです。微妙ですが、私はここでやっていることを馬鹿に何かがありますように感じる

Traceback (most recent call last): 
    File "/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/lib/webapp2-2.5.2/webapp2.py", line 1535, in __call__ 
    rv = self.handle_exception(request, response, e) 
    File "/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/lib/webapp2-2.5.2/webapp2.py", line 1529, in __call__ 
    rv = self.router.dispatch(request, response) 
    File "/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/lib/webapp2-2.5.2/webapp2.py", line 1278, in default_dispatcher 
    return route.handler_adapter(request, response) 
    File "/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/lib/webapp2-2.5.2/webapp2.py", line 1102, in __call__ 
    return handler.dispatch() 
    File "/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/lib/webapp2-2.5.2/webapp2.py", line 572, in dispatch 
    return self.handle_exception(e, self.app.debug) 
    File "/Applications/GoogleAppEngineLauncher.app/Contents/Resources/GoogleAppEngine-default.bundle/Contents/Resources/google_appengine/lib/webapp2-2.5.2/webapp2.py", line 570, in dispatch 
    return method(*args, **kwargs) 
    File "/Users/jedc/pm-tools/oauth2client/contrib/appengine.py", line 644, in check_oauth 
    resp = method(request_handler, *args, **kwargs) 
    File "/Users/jedc/pm-tools/main.py", line 113, in post 
    presentation = service.presentations().create(body=presentationbody).execute() 
    File "/Users/jedc/pm-tools/oauth2client/_helpers.py", line 133, in positional_wrapper 
    return wrapped(*args, **kwargs) 
    File "/Users/jedc/pm-tools/googleapiclient/http.py", line 840, in execute 
    raise HttpError(resp, content, uri=self.uri) 
HttpError: <HttpError 401 when requesting https://slides.googleapis.com/v1/presentations?alt=json returned "Request is missing required authentication credential. Expected OAuth 2 access token, login cookie or other valid authentication credential. See https://developers.google.com/identity/sign-in/web/devconsole-project."> 

。私はそれが何であるかを理解するための助けや指針に感謝します!

答えて

0

このエラーは、httpが資格情報で認証されていないために発生します。 資格情報でhttpを認証するには、デコレータを使用する必要があります。

decorator = appengine.OAuth2DecoratorFromClientSecrets(
    CLIENT_SECRETS, 
    scope='https://www.googleapis.com/auth/presentations https://www.googleapis.com/auth/drive', 
    message=MISSING_CLIENT_SECRETS_MESSAGE) 
http = decorator.http() 
service = discovery.build('slides', 'v1', http=http) 

これで問題は解決します。 さらに詳しくはread this app engine decorators documentation Googleから

関連する問題