appengine python remote_api模块对象没有属性GoogleCredentials



AttributeError: 'module' 对象没有属性 'GoogleCredentials'

我有一个在本地主机上运行的应用程序引擎应用程序。我运行了一些测试,我想使用remote_api来检查 db 值。当我尝试通过访问访问remote_api时:

'http://127.0.0.1:8080/_ah/remote_api' 

我得到一个:

"This request did not contain a necessary header" 

但它在浏览器中工作。

当我现在尝试通过调用从我的测试中调用remote_api时

remote_api_stub.ConfigureRemoteApiForOAuth('localhost:35887','/_ah/remote_api')

我收到错误:

Error
Traceback (most recent call last):
  File "/home/dan/src/gtup/test/test_users.py", line 38, in test_crud
    remote_api_stub.ConfigureRemoteApiForOAuth('localhost:35887','/_ah/remote_api')
  File "/home/dan/Programs/google-cloud-sdk/platform/google_appengine/google/appengine/ext/remote_api/remote_api_stub.py", line 747, in ConfigureRemoteApiForOAuth
    credentials = client.GoogleCredentials.get_application_default()
AttributeError: 'module' object has no attribute 'GoogleCredentials'

我确实尝试重新安装整个谷歌云,但这不起作用。

当我打开 client.py

google-cloud-sdk/platform/google_appengine/lib/google-api-python-client/oauth2client/client.py 

我可以看到,remote_api_stub.py使用它,里面没有GoogleCredentials类。

GoogleCredentials类存在,但在位于以下位置的其他 client.py 文件中:

google-cloud-sdk/platform/google_appengine/lib/oauth2client/oauth2client/client.py
google-cloud-sdk/platform/gsutil/third_party/oauth2client/oauth2client/client.py
google-cloud-sdk/platform/bq/third_party/oauth2client/client.py
google-cloud-sdk/lib/third_party/oauth2client/client.py

我的app.yaml看起来像这样:

application: myapp
version: 1
runtime: python27
api_version: 1
threadsafe: true
libraries:
- name: webapp2
  version: latest
builtins:
- remote_api: on
handlers:
- url: /.*
  script: main.app

这只是应用程序引擎内部的错误导入/错误吗?还是我在单元测试中使用remote_api做错了什么?

我通过替换文件夹解决了这个问题:

../google-cloud-sdk/platform/google_appengine/lib/google-api-python-client/oauth2client

跟:

../google-cloud-sdk/platform/google_appengine/lib/oauth2client/oauth2client

包含在google-api-python-client文件夹中的那个现在在客户端文件中具有所需的类:GoogleCredentials。

然后我遇到了第二个连接问题,现在我必须打电话:

remote_api_stub.ConfigureRemoteApiForOAuth('localhost:51805','/_ah/remote_api', False)

请注意,每次端口都会更改,服务器会重新启动。

回答而不是评论,因为我无法用我的声誉发表评论 -

在Mac上运行这些类型的脚本时,类似的事情也发生在我身上。 有时,您的 PATH 变量会混淆实际检查哪些文件的功能,尤其是当您将 gcloud 与应用程序引擎启动器一起安装时。 如果在 mac 上,我建议编辑/打开您的 ~/.bash_profile 文件来解决此问题(或者在 Linux 上可能编辑/打开 ~/.bashrc(。 例如,在我的Mac上,我有以下行来修复我的PATH变量:

export PATH="/usr/local/bin:$PATH"
export PYTHONPATH="/usr/local/google_appengine:$PYTHONPATH

这些基本上确保python/命令行在PATH(或PYTHONPATH(中的任何内容之前都会在/usr/local/bin(或PYTHONPATH行的情况下为/usr/local/google_appengine(中查找

PATH 变量是命令行在提示符中键入 python 文件时检查它们的位置。 PYTHONPATH 是 python 文件查找要在运行时加载的模块的地方。

相关内容

  • 没有找到相关文章