Which credentials should I put in for Google App Engine BulkLoader at development server?

后端 未结 9 1897
[愿得一人]
[愿得一人] 2021-02-10 06:28

I would like to ask which kind of credentials do I need to put on for importing data using the Google App Engine BulkLoader class

appcfg.py upload_data --config_         


        
9条回答
  •  我在风中等你
    2021-02-10 06:52

    Edit: Look at my new solution

    This problem is still present. I have opened a ticket to ask if the authentication could be bypassed on the local dev server. Please vote for this issue so that we can have it resolved [quickly].

    I have been able to upload data to the dev server by:

    • leaving the "login:admin" line in app.yaml
    • adding "--email=foobar@nowhere.com" to your command
    • pressing Enter when prompted for a password (nothing required)

    Leaving the "login:admin" line is a good thing, as you will not upload your app on the production servers without this line, which could expose you to someone adding data to your datastore...

    Blockquote

提交回复
热议问题