Step 1 - Use below javascript code inside your html.
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({ appId : 'appId', status : true, cookie : true, xfbml : true });
function updateButton(response) {
button = document.getElementById('facebookConnect');
if (response.authResponse) {
//user is already logged in and connected
FB.api('/me', function(info) {
login(response, info);
});
// we don't want this right now.
/*button.onclick = function() {
FB.logout(function(response) {
logout(response);
});
};*/
} else {
//user is not connected to your app or logged out
button.onclick = function() {
FB.login(function(response) {
if (response.authResponse) {
FB.api('/me', function(info) {
login(response, info);
});
} else {
// if needed then can implement this
//user cancelled login or did not grant authorization
}
}, {scope:'email,user_birthday,status_update,publish_stream,user_about_me'});
}
}
}
// run once with current status and whenever the status changes
FB.getLoginStatus(updateButton);
FB.Event.subscribe('auth.statusChange', updateButton);
};
(function() {
var e = document.createElement('script');
e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
e.async = true;
document.getElementById('fb-root').appendChild(e);
}());
Step 2 - The button click event to be given in html
<a id="facebookConnect"></a>
Step 3 - handle login function in your javascript file ( can be jquery or where you are handling all your events )
function login(response, info){
if(response.authResponse && response.status == "connected"){
// your code here or send the token
// info.id , response.authResponse.accessToken on server side.
}
}
Thats it you will be able to login to facebook and get the user information. Also make sure that you replace the appId with your appId. I have just put that as appId as don't want to disclose it.