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.