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.

If you do this,

http://www.facebook.com/dialog/oauth/?
  scope=email,user_birthday&
  client_id=123050457758183&
  redirect_uri=http://www.example.com/response&
  response_type=token&
  display=popup

It works but it redirects to facebook URL, however if I load it in a popup, then facebook does not display the page at all. (instead it displays facebook logo see image below

enter image description here

Why does this happen??? how do you display facebook login in a popup window anyways? (because its not working)

share|improve this question

1 Answer

up vote 1 down vote accepted

It works when I navigate to that page. How do you open the popup? Perhaps it gets blocked by a popup blocker..

May I recommend you to look into using FBJS to open the popup? Something like this:

FB.login(function() {
 // handle the response
}, { perms: 'email,user_birthday' });
share|improve this answer
Hmm, so you are using the javascript sdk? I followed this developers.facebook.com/docs/authentication – 001 Jul 15 '11 at 12:13

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.