How to create a POST redirect?
User calls my REST service. I need:
- Redirect him to a POST url
- Provide request body
Is it possible? How?
Discussion (5)2
Comments
Purpose of REST is not to provide web pages, therefore I do not think this is possible. I remember once I tried it based on request from another customer and failed.
Redirect is easy to do in REST:
set %response.Redirect = "url"
And that's it. The problem is forcing a client to redirect to a POST verb and also providing the body.
Hi Eduard
Serverside redirect?
Peter
Wouldn't work in that context (OAuth authentication).
Did you ever get a resulotion to this?