I have been reading all different posts about fixed getUser to return something other than false. Fixing CSRF state token not matching errors and getLoginUrl issues, but am so confused a frustrated, so hoping someone can shed some light on a fix. My code at top of page app is:
header('P3P:CP="IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT"');
include('includes/facebook.php');
$facebook = new Facebook(array(
'appId' => $app_id,
'secret' => $app_secret,
'cookie' => true
));
$user = $facebook->getUser();
$fbusername = "";
if ($user) {
try {
$user_profile = $facebook->api('/me');
$fbusername = $user_profile['username'];
if (!$fbusername) {
$fbusername = $user_profile['id'];
}
} catch (FacebookApiException $e) {
$user = null;
}
} else {
$redirecturl = 'http://apps.facebook.com/appName';
$params = array('redirect_uri' => $redirecturl);
$fbauthurl = $facebook->getLoginUrl($params);
echo '<script type="text/javascript">top.window.location="'.$fbauthurl.'";</script>';
die;
}
I use htaccess to redirect urls like:
RewriteEngine on
RewriteCond %{HTTP_HOST} !^www\.
RewriteCond %{HTTP_HOST} !^localhost
RewriteRule (.*) http://www.%{HTTP_HOST}/$1 [R=301,L]
RewriteRule !\.(gif|jpg|jpeg|png|bmp|css|js|php|ico|pdf|swf|mov|htm|html|flv|txt|mp3|eot|ttf|woff|svg)$ /home.php
The user starts in the app either by http://apps.facebook.com/appName or http://www.facebook.com/NAME/app_APPID and immediately go to the login url. I have to use the javascript as header seems to cause a loop or something and display a blank white page. I put the redirect url to the app because it gives the same issue if I put the app_APPID and if I don't have the param, it redirects to the main site and I am looking for the users to stay within Facebook.
Doing it this way however continues to load the same page (keeps calling getLoginURL, passing and going to redirect url), which generates new code and state request variables in the url. I am guessing this is what it can't find the user and continues to redirect.
This code seemed to work a few weeks back, but not it doesn't seem to work.
Any help would be greatly appreciated.
Thanks.