Problem: I have to redirect my Post request to my other server with all the headers and params and options.
For redirecting I am using below code
conn |> redirect(external: redirect_url) |> halt()
Which doesnt retain all the headers, params and information.
How can I simply redirect to external url with everything intact?