All Oauth providers I've authenticated with will redirect you to a page that says something like "Thanks, redirecting you..." and uses javascript to redirect you to the supplied redirect_uri. I would have thought it was simpler and faster to return an HTTP redirect. Why is it always done that way?
|
302's Location header according to HTTP 1.1 looks like this:
Using Javascript probably is more reliable way because you're suppose to pass the access tokens via fragment. Edit:
I now know what happened with IE8. IE does respect the fragment identifier in Location header, but it ignores the one from source URI. My redirect URL was to
Between step 1 and 2, IE8 threw away the fragment identifier, while some of the other browsers redirected to So the real answer is 302 is ok, as long as you don't use it more than once on the URL. |
||||
|
|