Google App Engine 数据存储区管理员
当我尝试访问 GAE 应用程序中的数据存储管理页面时,出现以下错误:
Error: Server Error
The server encountered an error and could not complete your request.
If the problem persists, please report your problem and mention this error message and the query that caused it.
我已在 app.yaml 中将其打开,
builtins:
- datastore_admin: on
我什至无法从数据存储中下载数据。我收到错误消息“身份验证失败”。 可能是什么原因?
When I try to access the Datastore Admin page in my GAE app, i get the following error
Error: Server Error
The server encountered an error and could not complete your request.
If the problem persists, please report your problem and mention this error message and the query that caused it.
I have switched it on in my app.yaml
builtins:
- datastore_admin: on
I am not even able to download data from the datastore. I get the error Authentication failed.
What could be the reason ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
该错误与使用自定义域有关。当我创建一个普通的应用程序并上传代码时,它工作正常。仅当我有自定义域时,我才会遇到问题
The bug is something to do with using custom domain. When I create a normal application and upload the code, it works fine. Only when I have a custom domain, i get the problem
我将应用程序的身份验证方法从 Google Apps Domain 更改为 Google Accounts API,现在可以使用了。
I changed the apps's authentication method from Google Apps Domain to Google Accounts API and it now works.
请查看此文档中的过程。
也许您忘记添加:
Hope it help!
look at the procedure in this documentation.
Maybe you forgot to add :
Hope it help!