I have a simplistic app that needs to take arbitrary input params from a request and then direct the user to the corresponding external location. Is the
http.StatusFound
the correct response status?
There are a number of different 3xx status codes that are normally associated with redirects, and 302 Found
is one of them. See Wikipedia for the complete list.