Note that there are some explanatory texts on larger screens.

plurals
  1. POGoogle App Engine Bulkloader “Authentication Failed”
    primarykey
    data
    text
    <p>I'm trying to use the bulkloader to load my data to the App-Engine server. I run the following command using Python 2.5:-</p> <pre><code>appcfg.py upload_data --application=myappname --kind=mykind --filename=data_archive.csv --url=http://myappname.appspot.com/remote_api </code></pre> <p>But its failing with this Authentication error:-</p> <pre><code>[INFO ] Connecting to myappname.appspot.com/remote_api [ERROR ] Exception during authentication URLError: &lt;urlopen error [Errno 10061] No connection could be made because the target machine actively refused it&gt; [INFO ] Authentication Failed </code></pre> <p>My idea is to do a bulk download from my development server and then use this dump to do a upload to the app-engine server. The bulk download worked fine. I used this format for this:-</p> <pre><code>appcfg.py download_data --application=myappname --kind=mykind --url=http://localhost:8888/remote_api --filename=data_archive.csv </code></pre> <p>But the bulk upoad fails. A couple of things: the bulk download asked me for a userid and password, but the bulk upload does not. Also, I don't currently have a app.yaml file which I see mentioned a lot - do I need one to do this ?</p> <p>Thanks in advance for any help. M.</p> <p><strong>EDIT</strong> For anyone else struggling with this, the problem was indeed being behind the proxy server, but there was another 'error' with what is above. The app-id needs the "s~" bit added to it.</p> <pre><code>appcfg.py upload_data --application=s~myappname --kind=mykind --filename=data_archive.csv --url=http://myappname.appspot.com/remote_api </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload