I'm using facebook api to login the user, it's working fine but i'm having some troubles to retrieve data and use on code behind. I've tried some solutions but nothing worked.
Here the code so far
<script type="text/javascript">
// 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_APP_ID',
channelUrl: 'MY_URL',
status: true,
cookie: true,
xfbml: true
});
FB.getLoginStatus(function (response) {
if (response.status === 'connected') {
// connected
} else if (response.status === 'not_authorized') {
// not_authorized
} else {
// not_logged_in
}
});
}
function login() {
FB.login(function (response) {
if (response.authResponse) {
retrieveInfo();
window.location.reload();
} else {
// cancelled
}
});
}
function retrieveInfo() {
FB.api('/me', function (response) {
var name = document.getElementById('name');
name.innerHTML = response.name;
var email = document.getElementById('email');
email.innerHTML = response.email;
});
}
</script>
<fb:login-button onlogin="login()" perms="email,user_about_me,user_birthday">Login com Facebook</fb:login-button>
<div align="center">
<div id="name"></div>
<div id="email"></div>
</div>
As i said the data is been retrieved ok, but how can i use it on code behind?
FB.apiis an asynchronous method – that means, the following code is executed immediately, execution does not wait for this method to finish. And for your code that means, you are reloading the page immediately after calling retrieveInfo, and that’s of course before the API request is finished. – CBroe Nov 30 '12 at 17:07