Google AppEngine 上导入错误:没有名为 oauth2 的模块
我正在运行 Google AppEngine。我安装了oauth2。我成功地能够在程序中导入oauth2,但是当我在本地主机上使用GoogleAppEngine Launcher运行我的python应用程序时,我收到以下错误
ImportError: No module named oauth2
我使用Python2.7,这不是GoogleAppEngine的默认版本,但我已经更改了python路径我的项目和 GoogleAppEngine Launcher 中。
Im running Google AppEngine. I have oauth2 installed. Im successfully able to import oauth2 in program but when I run my python application using GoogleAppEngine Launcher on localhost, then I get the following error
ImportError: No module named oauth2
Im using Python2.7 which is not the default version of GoogleAppEngine, but I have changed the python path both in my project and in GoogleAppEngine Launcher.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您看过此示例吗?它显示了 Google App Engine Python 项目中使用的 OAuth2。这可能会让您更好地了解如何使用 OAuth2 和 GAE。
Have you looked at this example? It shows OAuth2 being used in a Google App Engine Python project. This might give you a better sense of how to use OAuth2 and GAE.
您是否尝试使用 OAuth2 对 App Engine 上的入站 HTTP 请求进行身份验证?
我刚刚在这里发布了一个完整的端到端示例:
Google App Engine oauth2 提供商
Are you trying to authenticate inbound HTTP requests on App Engine using OAuth2?
I just posted a full end to end example here:
google app engine oauth2 provider