I'm running on my pc a Python application and I'm storing the results on appengine Datastore to be used in my website.
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.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?