[google-appengine] copying data from appengine datastore admin to my dev server. failed with status 401

2011-11-08 Thread Mariano Benitez
Hello, I am trying to copy data from my appengine to my dev server, instead of doing the normal bulk download/upload, I tried the datastore admin copy function. I've setup the dev server public ip so it can be seen from outside. When I try to run it from appengine, it fails with status 401, no

Re: [google-appengine] copying data from appengine datastore admin to my dev server. failed with status 401

2011-11-08 Thread Nick Johnson
This is unlikely to work, and you should never ever expose your dev_appserver publicly. Consider making a small reusable test dataset you can easily load, rather than relying on a complete dump of production data, which won't scale. -Nick On Wed, Nov 9, 2011 at 4:31 PM, Mariano Benitez wrote: >

Re: [google-appengine] copying data from appengine datastore admin to my dev server. failed with status 401

2011-11-09 Thread Mariano Benitez
Thanks Nick, This is an exceptional case, where I am seeding my dev environment. I don't regularly leave my dev server public. :) Anyway, I though it was a simple way to seed, since it does not involve any command line. If you think it will never work, it's ok, but it would be good if you in

Re: [google-appengine] copying data from appengine datastore admin to my dev server. failed with status 401

2011-11-13 Thread Greg Tracy
I'm seeing the same error between two production apps. (1) Duplicate application (2) Upload code to new application (2) Enable datastore admin on new app (3) Use "copy to another app" on the original app This results in a 401... "Fetch to https://smsmybus-test.appspot.com/_ah/remote_api failed

Re: [google-appengine] copying data from appengine datastore admin to my dev server. failed with status 401

2011-11-14 Thread Greg Tracy
It's probably worth adding one more detail. I can't access the Datastore Admin when I'm logged in with app's owner account (I think this is a known bug). I can only access the admin page from another developer account. That may be contributing to the access problem. Thoughts? -- You receive

Re: [google-appengine] copying data from appengine datastore admin to my dev server. failed with status 401

2011-11-14 Thread Greg Tracy
I found the issue I had been prefixing my app ID in the appengine_config.py file with 's~', which is the norm for bulkloader operations even though it isn't documented. It looks like that prefix isn't required in this case. -- You received this message because you are subscribed to the G

Re: [google-appengine] copying data from appengine datastore admin to my dev server. failed with status 401

2015-05-19 Thread Sam Alexander
Is this seriously the type of support you guys give? Fucking pathetic On Wednesday, November 9, 2011 at 12:33:44 AM UTC-5, Nick Johnson wrote: > > This is unlikely to work, and you should never ever expose your > dev_appserver publicly. > > Consider making a small reusable test dataset you can ea