IE 6/7 will get an internal error because /auth/:provider/callback because it does not remember the redirect URL stored in the session.
Safari 5.0 on Mac and Safari on iOS 5 do not allow setting a cookie while redirecting between domains, could be the same issue.
A workaround (frequently used by ads) is to return a web page instead of redirecting. The web page can contain a script that submits a form (with a meta refresh header as a backup).
IE 6/7 will get an internal error because
/auth/:provider/callbackbecause it does not remember the redirect URL stored in the session.Safari 5.0 on Mac and Safari on iOS 5 do not allow setting a cookie while redirecting between domains, could be the same issue.
A workaround (frequently used by ads) is to return a web page instead of redirecting. The web page can contain a script that submits a form (with a meta refresh header as a backup).