Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Redirecting to a url with POST data using Python Bottle

Is there any way of adding POST data when redirecting to another page?

I've built a service that will redirect the user back to whatever page is specified when the service is called. The problem is I can't put any GET parameters on the url due to complex and badly written rewrite rules etc. so I need to send a value with POST. Is there anyway of adding to Bottles redirect(return_url) or using some other lib in Python?

like image 616
Skynxnex Avatar asked Jan 13 '14 09:01

Skynxnex


1 Answers

You may build the response, instead of using the redirect(url) method of bottle

from bottle import route, run, response

@post('/wrong')
def wrong():
  response.status = 303
  response.set_header('Location', '/hello')
  return '"key":"val"'  # Enter the body here

@route('/hello')
def hello():
  return "Hello World!"

run(host='0.0.0.0', port=8080, debug=True)
like image 164
mike Avatar answered Nov 03 '22 17:11

mike