Reputation: 1050
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 ?
Upvotes: 3
Views: 2361
Reputation: 3671
look at the procedure in this documentation.
Maybe you forgot to add :
builtins:
- remote_api: on
Hope it help!
Upvotes: 2
Reputation: 21
I changed the apps's authentication method from Google Apps Domain to Google Accounts API and it now works.
Upvotes: 2
Reputation: 1050
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
Upvotes: 2