redirect_to using POST in rails

Redirection isn’t possible with POST requests – it’s part of the HTTP/1.1 protocol.

You could either introduce another step that contains the form data to be POSTed to the payment processor, or you could send the post from your application (something I have done when working with PROTX).

Leave a Comment