我在数小时的时间里一直在为之奋斗......
我的网站上有“Facethton”和“Im”,试图将经认证的用户数据输入一个数据库。 视像可能是一种新鲜的视像,会发现我的错误,因此,我已经知道。
<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>
添加。 php script...
<?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());
}
?>
我看不出用户的名字去张贴并添加数据库。 如果我用警钟发出警报,它确实掩盖了正确的信息。 当我能够核对错误时,在网址文字方面似乎也没有任何错误。
频率呼吁被列入头盔。
我失踪了什么?