I have been working on this all day now, and I have been unable to solve this issue. Any help would be appreciated.
I am trying to download my data from my appspot application and then upload the data into my development instance so I can do local development and testing on my production data...however, I am running into two problems. First, please know that I have followed the instructions here: http://code.google.com/appengine/docs/python/tools/uploadingdata.html but I am still unable to get a result. I can easily run bulkloader.py --dump .... but the problem is that how do I then 'restore' to my local instance, as opposed to restoring to production again? So the next thing I did was try to create the custom 'importer' and 'exporter' handlers, as follows: C:\google\appengine>appcfg.py download_data --config_file=projects\xyz \profile_exporter.py --url=http://xyz.appspot.com/profile_exporter -- filename=profile_data_archive.csv --kind=mwProfile projects\xyz where 'xyz' is replaced with the name of my project... but when I run the examples, I keep getting the following error: raise HTTPError(req.get_full_url(), code, msg, hdrs, fp) HTTPError: HTTP Error 500: Internal Server Error [INFO ] Authentication Failed -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=.
