I'm stuck now, last days my facebook connect worked at localhost.
It's does not work anymore, I didn't touch the code. I see i'm not alone with an infinite loop error.
include_once('/src/libs/providers/facebook.class.php');
// Create our Application instance (replace this with your appId and secret).
$facebook = new Facebook([
'appId' => '173678432757289',
'secret' => '...',
'cookie' => true
]);
// Get User ID
$user = $facebook->getUser();
if ($user) {
try {
// Proceed knowing you have a logged in user who's authenticated.
$user_profile = $facebook->api('/me');
$response = $user_profile;
} catch (FacebookApiException $e) {
// error_log($e);
$user = null;
$response = null;
}
}
// Login or logout url will be needed depending on current user state.
if ($user) {
$logoutUrl = $facebook->getLogoutUrl();
} else {
$loginUrl = $facebook->getLoginUrl(array(
"response_type"=> "token", //Can also be "code" if you need to
"scope" => "email,user_birthday"
));
header('Location: '. $loginUrl);
}
The problem is on the last header location, I can print the loginUrl, after that it falls.
In my FB apps, I tried to reset the app secret. My app domains field is "localhost" (it worked last days)
Its pretty annoying, someone could help for that plz? Any update on FB connect API?
Thanks, regards.