FB.init({
appId : '{248591178890761}',
status : true,
xfbml : true,
version : 'v2.7' // or v2.6, v2.5, v2.4, v2.3
});
FB.init()
function onLogin(response) {
if (response.status == 'connected') {
FB.api('/me?fields=first_name', function(data) {
var welcomeBlock = document.getElementById('fb-welcome');
welcomeBlock.innerHTML = 'Hello, ' + data.first_name + '!';
});
}
}
FB.getLoginStatus(function(response) {
// Check login status on load, and if the user is
// already logged in, go directly to the welcome message.
if (response.status == 'connected') {
onLogin(response);
} else {
// Otherwise, show Login dialog first.
FB.login(function(response) {
onLogin(response);
}, {scope: 'user_friends, email'});
}
});
The part time Blogger love to blog on various categories like Entertainment, Sports, Politics, Events, Job News, Bengal News, National News, International News. If you want be a part of our Admin Panel, please Contact / Whatsapp: +91 8961363755.
Post a Comment