I would like to get information how to securely save user's id using Facebook Login with Javascript SDK ?
I get it using
FB.getLoginStatus(function(response) {
if (response.status === 'connected') {
->>> response.authResponse.userID
} else if (response.status === 'not_authorized') {
window.location.href='index.php';
} else {
window.location.href='index.php';
}
});
};
but i need securely save it to mysql database. Any ideas?