Hi,
I'm running on my pc a Python application and I'm storing the results on 
appengine Datastore to be used in my website.

The local code is:

def invia(utente, numero, tweet, link1, risorsa):
        params = urllib.urlencode({'utente': utente, 'numero': numero, 
'tweet': tweet, 'link1': link1, 'risorsa': risorsa})
        headers = {"Content-type": 
"application/x-www-form-urlencoded","Accept": "text/plain"}
        conn = httplib.HTTPConnection("myapp.appspot.com")
        conn.request("POST", "", params, headers)
        response = conn.getresponse()
        print response.status, response.reason

It was working well, now I have accepted the new terms and the app is not 
working anymore and it's getting a 405 Error. How can I solve this? Is it 
really linked to new terms?

2012-12-15 03:29:58.770 / 405 49ms 0kb

000.000.00.000 - - [15/Dec/2012:03:29:58 -0800] "POST / HTTP/1.1" 405 124 - - 
".....appspot.com" ms=50 cpu_ms=0 cpm_usd=0.000014 instance=. 
<https://appengine.google.com/instances?app_id=s~twhotpics&version_id=1.363883266565812779&key=00c61b117caaabaec4d4638b12846ed3ed1b4f89#00c61b117caaabaec4d4638b12846ed3ed1b4f89>.....


-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine/-/hHWNNiTCsboJ.
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=en.

Reply via email to