I’m using Facebook OAuth interface but can’t get immediate mode parameter working. Do you have any idea how that works with FB or any other url to use instead?!
(I don’t/can’t use FB JS libraries.)
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I have extracted following url from FB php-sdk (which Quentin reminds me):
When you redirects user to above url (or open it as an iframe or popup) Facebook silently/immediately redirects backs user/browser to:
no_userwhen user has NOT signed in.no_sessionwhen user has signed in but has NOT authorized your app yet.ok_sessionwhen user has signed in and already authorized your app. Additional parameters (user identification and required token) will be appended to this url by FB which you need to validate.For example:
Put them in one line whit no spaces and don’t forget to encode urls if needed.
See OpenID Immediate mode to find out why this is useful.