I'm use nginx as a Reverse Proxy:
location /facebook/
{
proxy_pass http://upload #this is an nother server;
proxy_redirect off;
}
and my code:
$facebook = new Facebook(array(
'appId' => "xx",
'secret' => "xxxxxxxx",
));
$user = $facebook->getUser();
if ($user){
$user_profile = $facebook->api('/me');
var_dump($user_profile);
}
else
{
$url=$facebook->getLoginUrl( array( 'scope' => $req_perms) );
//if I used nginx I must change redirect_uri
$url = str_replace('http%3A%2F%2Fupload%2F', 'http%3A%2F%2F'. $mydomian .'%2F',$url);
header("Location:".$url);
}
If I do not use nginx as Reverse Proxy,it works fine, but if I use it, it creates an endless loop because $facebook->getUser() returns 0. I have no idea what the problem is.