我试图在我的网站中实现 Facebook Javascript SDK 登录,但需要存储有关用户的信息,以便当用户使用 Facebook 重新登录时,我会存储有关他们的信息,例如他们以前的网站内活动。我可以将它集成到 MySQL 数据库中吗?
问问题
921 次
1 回答
4
我想您可能会搜索以下将记录的用户信息存储到 mysql 数据库中的方法,
FB.login(function(response) {
if (response.authResponse) {
console.log('Welcome! Fetching your information.... ');
FB.api('/me', function(response) {
var fbname=response.name;
var fbid=response.id;
$.ajax({
type: "POST",
url: page_for_storing_information,
data: "name="+fbname+"&uid="+fbid,
success: function(msg){
}
});
console.log('Good to see you, ' + response.name + '.');
});
} else {
console.log('User cancelled login or did not fully authorize.');
}
});
于 2012-10-11T06:01:32.040 回答