google cloud datastore - Problem uploading and downloading data from to deployment app in GAE -
file "c:\program files\google\google_appengine\google\net\proto\protocolbuffer .py", line 436, in skipdata raise protocolbufferdecodeerror, "corrupted" google.net.proto.protocolbuffer.protocolbufferdecodeerror: corrupted
what's problem , how fix it? maybe download not ok?
i error when im uploading data deplying app in gae.
i use in app:
builtins: - remote_api: on
command downloading data developement:
appcfg.py download_data --application=,yapp --kind=survey --url="http://localhost:9999/_ah/remote_api" --filename="c:\myapp\src\test.csv"
this command use upload data deployment:
appcfg.py upload_data --application=myapp --kind=survey --filename="c:\myapp\src\test.csv" --url=http://myapp.appspot.com
myapp not actual name...
when uploading, --url parameter must link remote_api of application, so:
appcfg.py upload_data --application=myapp --kind=survey --filename="c:\myapp\src\test.csv" --url=http://myapp.appspot.com/_ah/remote_api
Comments
Post a Comment