我几个小时都在苦苦挣扎......
我的网站上有一个Login with Facebook按钮,我正在尝试将经过身份验证的用户数据添加到数据库中。希望一双新鲜的眼睛可以找到我的错误,所以这就是我所拥有的。
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : 'MY APP ID',
oauth : true,
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
};
function fb_login(){
FB.login(function(response) {
if (response.authResponse) {
console.log('Welcome! Fetching your information.... ');
//console.log(response); // dump complete info
access_token = response.authResponse.accessToken; //get access token
user_id = response.authResponse.userID; //get FB UID
FB.api('/me', function(response) {
$.post("addtodb.php", {name: response.name})
});
window.location.href = "next.php"; //redirect once authorized
FB.api('/me/devlogintest:join', 'action',
{ object : 'http://www.mysite.com' });
} else {
//user hit cancel button
console.log('User cancelled login or did not fully authorize.');
}
}, {
scope: 'email,publish_actions'
}
);
}
(function() {
var e = document.createElement('script');
e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
e.async = true;
document.getElementById('fb-root').appendChild(e);
}());
</script>
addtodb.php脚本......
<?php
include('config.php');
$fbname = $_POST['name'];
if(!empty($_POST)){ //won't submit blanks if no data
// Make a MySQL Connection
mysql_connect($Host,$Username,$Password) or die(mysql_error());
mysql_select_db($Database) or die(mysql_error());
// Insert rows
mysql_query("INSERT INTO fbusers
(name) VALUES('$fbname') ")
or die(mysql_error());
}
?>
我似乎无法将用户的名字命名为Post并添加到数据库中。如果我在javascript上使用警报,它会弹出正确的信息。当我启用错误检查时,php脚本端似乎也没有任何错误。
Jquery调用包含在head标签中。
我错过了什么?
答案 0 :(得分:2)
您的代码中的一个主要问题是在运行异步代码... FB.api
和$.post
之后使用重定向以异步方式工作,因此可能会在next.php
之前重定向到FB.api
1}}将数据和/或$.post
提交的数据返回给服务器。
正如评论$results = mysql_query($query) or die("Error: " . mysql_error());
中所述,将警告$query
未被定义并导致空查询。如果脚本被调用(可能不是),您应该在日志中看到该警告(启用了错误报告)。
尝试在$.post
的回调函数中移动重定向代码,以便等到脚本收到数据。