In GAE (Python), using the webApp Framework, calling self.redirect('some_url') redirects the user to that URL via the GET method. Is it possible to do a (redirect) via the POST method with some parameters as well?
If possible, how?
Thanks!
|
In GAE (Python), using the webApp Framework, calling self.redirect('some_url') redirects the user to that URL via the GET method. Is it possible to do a (redirect) via the POST method with some parameters as well? If possible, how? Thanks! |
|||||
|
|
This is not possible due to how most clients implement redirection [1]:
So you must use a workaround (like simply calling the method post() from the RequestHandler) or forget the idea. [1] http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.3.2 |
|||
|
|
Looks like there's a similar question asked here: http://stackoverflow.com/questions/881086/google-app-engine-self-redirect-post The answer to that one recommends using the urlfetch.fetch() to do the post.
import urllib
form_fields = {
"first_name": "Albert",
"last_name": "Johnson",
"email_address": "Albert.Johnson@example.com"
}
form_data = urllib.urlencode(form_fields)
headers = {'Content-Type': 'application/x-www-form-urlencoded'}
result = urlfetch.fetch(url=url,
payload=form_data,
method=urlfetch.POST,
headers=headers)
|
|||||||||||||
|