I've been struggling with this for hours...
I have a Login with Facebook button on my site and I'm trying to add the authenticated user data to a database. Hoping maybe a fresh pair of eyes can find my mistake, so here's what I have.
<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>
The addtodb.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());
}
?>
I can't seem to get the user's name to Post and add to the database. If I use an alert on the javascript, it does popup the correct information. There also doesn't seem to be any errors on the php script side when I enable error checking.
Jquery call is included in head tags.
What am I missing?
$results = mysql_query($query) or die("Error: " . mysql_error());before you first define$query? – Dan Nissenbaum May 6 '12 at 4:27