Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I followed the instruction on this page (http://developers.facebook.com/docs/authentication/) to add facebook authentication on my web site.

I manage to get it work however, the request for permission window is not the same. the first one is how it's supposed to look like. the second one is what I have.

here's the code i use.

"https://graph.facebook.com/oauth/authorize?client_id={0}& redirect_uri={1}{2}&scope=email,user_photos,publish_stream";

enter image description here

enter image description here

share|improve this question

2 Answers

up vote 1 down vote accepted

That's the new dialog - if you want to disable that for some reason there's an option in the app settings for 'enabled enhanced auth dialog' - turn it off

share|improve this answer
I have it enabled without knowing what that for. thank you so much. – feelexit Dec 8 '11 at 23:43

Are you sure that you are using the right id from your facebook app? You can find this id here: https://developers.facebook.com/apps

share|improve this answer
yes, my ID is correct, those {0}, {1}, {2} are placeholders, they are replaced by real values I set in the web.config file. my authentication works. but instead having log in button, I should have allow button on the page. – feelexit Dec 8 '11 at 21:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.