I need to force an explicit login through facebook with each new session. I am using auth_type=reauthenticate as documented here: https://developers.facebook.com/docs/reauthentication/
However, firefox and safari give me a non-secure form warning after the user attempts to log in. (Firefox: "Although this page is encrypted, the information you have entered is to be sent of an unencrypted connection and could easily be read by a third party"...)
Here's my call: https://www.facebook.com/dialog/oauth?auth_type=reauthenticate&client_id=12345&redirect_uri=https://www.returnurl.com
Any way around this?
auth_nonce? (You definitely should be and maybe that will help.) Did you try usinghttps://graph.facebook.com/oauth/authorizeinstead ofhttps://www.facebook.com/dialog/oauth? – Old Pro Apr 20 '12 at 7:40https://graph.facebook.com/oauth/authorizeused in place ofhttps://www.facebook.com/dialog/oauth. – adamnfish Apr 27 '12 at 10:16