All, I'm trying to integrate Facebook authentication on my Wordpress site. So what I'm trying to do is basically add the email address to the scope variable on my login page. That way I'll have the email address they plan on using and store that in my database. Now whenever they come back to my page I'm checking to see if they are logged into to facebook. I'm doing this by adding the following code to my header.php file within Wordpress (I have facebook.php, base_facebook.php and the certificate all in the same folder as the header.php file):
define('123', '123');
//uses the PHP SDK. Download from https://github.com/facebook/php-sdk
require 'facebook.php';
$facebook = new Facebook(array(
'appId' => '123',
'secret' => '123456',
));
$userId = $facebook->getUser();
if ($userId) {
$userInfo = $facebook->api('/' + $userId);
$qry = "Select user_id, role from event_details where email_address='$userInfo[email]'";
$result = mysql_query($qry);
$resultrows = mysql_num_rows($result);
if($resultrows>0){
$resultset = mysql_fetch_array($result);
$_SESSION['userId'] = $resultset['user_id'];
$_SESSION['role'] = $resultset['role'];
}
}
This part works fine if the user is logged in. However the part I'm struggling with is if they aren't logged in. I put the following code in a JS file and also added that to the header.php file:
// JavaScript Document
window.fbAsyncInit = function() {
FB.init({
appId : '<?= 123?>',
status : true,
cookie : true,
xfbml : true,
oauth : true,
});
FB.Event.subscribe('auth.login', function(response) {
window.location.reload();
});
};
(function(d){
var js, id = 'facebook-jssdk'; if (d.getElementById(id)) {return;}
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all.js";
d.getElementsByTagName('head')[0].appendChild(js);
}(document));
Then on my login page (which I added through the Wordpress pages interface) I added the following bit of code:
<div id="fb-root"></div>
<fb:login-button scope="email"></fb:login-button>
When I click this button now I get the facebook pop up but it says that "An error has occured. Please try again later."
Why would this be the case? I don't know if it will help but here is the URL that facebook is trying to use:
Thanks for any help you can provide on this issue!