There is a code in Sinatra application
post '/login' do
return_url = params[:return_url] # it's nil
#........
end
The url of a page might contain return_url parameter - /my_app/login?return_url='blabla'. When I try to get it, it returns nil because there is no return_url parameter in post data.
How do I access to get params of return_url? I know I might create a hidden field and save it to it, but is there another way?