Problem uploading app to google app engine
Posted
by Oberon
on Stack Overflow
See other posts from Stack Overflow
or by Oberon
Published on 2010-06-11T12:33:13Z
Indexed on
2010/06/11
13:03 UTC
Read the original article
Hit count: 252
I'm having problems uploading an app to the google-app-engine from my work place. I believe the problem is related to proxy, because I do not see the same problem when following the same procedure from home. (I do not specify HTTP_PROXY from home).
These are the commands I run:
HTTP_PROXY=http://proxy.<thehostname>.com:8080
HTTP_PROXY=https://proxy.<thehostname>.com:8080
appcfg.py --insecure update myappfolder
When running the commands I get prompted for email and password, as expected, but after that it immediately exits with this errormessage:
Error 302: --- begin server output ---
<HTML>
<HEAD>
<TITLE>Moved Temporarily</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF" TEXT="#000000">
<H1>Moved Temporarily</H1>
The document has moved <A HREF="https://www.google.com/accounts/ClientLogin">here</A>.
</BODY>
</HTML>
--- end server output ---
Note: I added the --insecure option because else it gave a warning of missing ssl module.
Any idea how to solve or workaround this problem?
© Stack Overflow or respective owner