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 am planning to integrate the Facebook login plugin to my website. I was able to do that. Regarding the user expereince, I want to have a new window (same flow like Stack Overflow login). This webpage will have the Facebook button.

When the user clicks that, it should go to a new window (basically facebook url) when the user logs in there and facebook accepts the authentication, it should come back to my website.

<p id="fb_login_button_1">
    <fb:login-button onlogin="checkFacebookLogin();" size="medium" scope="email">
       Sign in using Facebook
    </fb:login-button>
</p>

I have no idea how to achieve this. I tried to search the documentation with no luck. Can you please let me know how to achieve this.

share|improve this question
actually this is not related to stackoverflow, so I've removed that tag – haynar Jul 30 '12 at 1:19
Sounds like you rather want to implement login yourself than use the fb-button. Calling FB.login from the JS SDK makes that really easy – have a look at developers.facebook.com/docs/reference/javascript/FB.login – CBroe Jul 30 '12 at 8:40
I tried with that also but could not get the same user expereince – The Learner Aug 1 '12 at 4:48
<a href="#" onclick="fblogin();return false;"><img src="images/my_login.png"></a> <script> //your fb login function function fblogin() { FB.login(function(response) { alert(" I am in"); }, {scope:'read_stream,publish_stream,offline_access'}); } </script> – The Learner Aug 1 '12 at 4:49
I tried that but it is not working – The Learner Aug 1 '12 at 4:49
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.