Trying to pull out simple authentication, gives me endless loop.
strangest thing, when using Mixed js and Php api, it works.
<?Php
//uses the PHP SDK. Download from https://github.com/facebook/php-sdk
require 'src/facebook.php';
$facebook = new Facebook(array(
'appId' => '306597542762982',
'secret' => '88XXXXXXf1',
));
if(!$facebook->getUser())
header("location: ".$facebook->getLoginUrl ());
var_dump($facebook->getUser());
The above code gives me endless loop. BUT! if you removed the header redirection, and I use the js sdk only for the login process, it works.