我想了解如何使用带有 Javascript SDK 的 Facebook 登录安全地保存用户 ID?
我得到它使用
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';
}
});
};
但我需要将其安全地保存到 mysql 数据库中。有任何想法吗?