【发布时间】:2016-11-16 21:49:11
【问题描述】:
我正在尝试将数据批量上传到端点 http://my-app.appspot.com/_ah/remoteapi,其中 my-app 是我的应用的 ID。
这是我的 app.yaml 的一部分
- url: /_ah/.*
script: google.appengine.ext.remote_api.handler.application
这是我使用的命令
appcfg.py upload_data --config_file=bulkloader.yaml --application whats-the-code --url=http://my-app.appspot.com/_ah/remote_api --filename=data/songs.xml --kind=Song --namespace=songs
问题是总是提示我输入凭据:
Please enter login credentials for my-app.appspot.com
Email: admin@some.host.com
Password for admin@some.host.com: ****
如何配置应用程序以绕过身份验证?在这种情况下如何指定要使用的正确电子邮件/密码?
【问题讨论】:
标签: google-app-engine google-cloud-datastore