I added a Facebook Login plugin which works fine. I am able to get the access token and display user name once authenticated by Facebook. I am also asking for email address of user in the scope parameter. But I do not know how to read email address value back from Facebook authentication.
// Load the SDK Asynchronously
(function (d) {
var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
if (d.getElementById(id)) { return; }
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all.js";
ref.parentNode.insertBefore(js, ref);
} (document));
// Init the SDK upon load
window.fbAsyncInit = function () {
FB.init({
appId: 'MY APPID', // App ID for TestApp
redirect_uri: 'http://localhost:53300/Homepage.aspx',
status: true, // check login status
cookie: true, // enable cookies to allow the server to access the session
xfbml: true // parse XFBML
});
// listen for and handle auth.statusChange events
FB.Event.subscribe('auth.statusChange', function (response) {
if (response.authResponse) {
// user has authenticated your app and is logged into Facebook
//collection uid and accesstoken sent from facebook for the user
var uid = response.authResponse.userID;
var accessToken = response.authResponse.accessToken;
//ajax call started
//sending uid and accesstoken to server for server side processing like session creating etc.
$.ajax({
type: "POST",
url: "FBAuthHandlerWebService.asmx/GetFacebookAuthenticationData",
data: "{'UID': '" + uid + "','AccessToken':'" + accessToken + "'}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (msg) {
$('#FBAuthenticated').val(msg.d); //we need to use msg.d and not just msg as msg is a object from server response.
}
});
//ajax call ended
FB.api('/me', function (me) {
if (me.name) {
document.getElementById('auth-displayname').innerHTML = me.name;
}
})
document.getElementById('auth-loggedout').style.display = 'none';
document.getElementById('auth-loggedin').style.display = 'block';
} else {
// user has not auth'd your app, or is not logged into Facebook
document.getElementById('auth-loggedout').style.display = 'block';
document.getElementById('auth-loggedin').style.display = 'none';
}
});
The above code works fine to login process. Please advise how I can get back and read the email address of user. I am using the following code for Facebook Login button:
<div class="fb-login-button" scope="email">Login with Facebook</div>
Let me know if more information is needed.
/me?fields=email– CBroe Sep 19 '12 at 9:19