I have this code with the the framework facebook-php-sdk, this ok for getting infos from user when my app is accepted, but i have a very strange blocking when first prompt to autorize the app.
What was wrong ?
The url for testing what happening : https://www.facebook.com/pages/Creative-Fabrik/298057113629009 and app "Calendrier"
<?php
require 'facebook-php-sdk-master/src/facebook.php';
$app_id ="appid";
$app_secret = "appsecret";
$canvas_page = "https://www.apptoimeme.com/calendrier/";
$scope = "&scope=offline_access, email, publish_stream, user_birthday, photo_upload";
$base_url = "https://www.facebook.com/dialog/oauth?client_id=";
$redirect = "&redirect_uri=";
$auth_url = $base_url . $app_id . $redirect . $canvas_page . $scope;
$facebook = new facebook(array(
'appId' => $app_id,
'secret' => $app_secret,
'cookie' => true,
));
$signed_request = $facebook->getSignedRequest();
print_r($signed_request);
if (empty($signed_request["user_id"])) {
echo("<script> top.location.href='" . $auth_url . "'</script>");
}
else {
$user_profile = $facebook->api('/me');
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>untiteled</title>
</head>
<body>
<h3>You</h3>
User ID : <?php echo $signed_request["user_id"]; //egale à $user_profile['id']?><br/>
User Name : <?php echo $user_profile['username']; ?><br/>
Nom : <?php echo $user_profile['last_name']; ?><br/>
Prénom : <?php echo $user_profile['first_name']; ?><br/>
Date de naissance : <?php echo $user_profile['birthday']; ?><br/>
Genre : <?php echo $user_profile['gender']; ?><br/>
E-mail : <?php echo $user_profile['email']; ?><br/>
Langue : <?php echo $user_profile['locale']; ?><br/>
Page Facebook : <?php echo $user_profile['link']; ?><br/>
<img src="https://graph.facebook.com/<?php echo $user_profile['username']; ?>/picture?type=large">
</body>
</html>