Google App Engine Warehouse Administrator

When I try to access the data warehouse admin page in a GAE application, 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 included it in my app.yaml

builtins:
- datastore_admin: on

I can’t even load data from the data store. I get an authentication error. What could be the reason?

+3
source share
3 answers

The error is related to the use of a custom domain. When I create a normal application and download the code, it works fine. Only when I have my own domain do I get a problem

+2
source

review the procedure in this documentation .

You may have forgotten to add:


builtins:
- remote_api: on
Hope it help!
+2
source

Google Apps API Google .

+2

Source: https://habr.com/ru/post/1789690/


All Articles