FacebookにoAuthを利用するための簡単なログインアプリがあります。
ユーザーに関するいくつかのことにアクセスする必要があるため、いくつかのパラメーターをUser & Friend Permissions
サーバーが伝播するのを 24 時間以上待ちましたが、トークンをデバッグすると、これらのアクセス許可がスコープに追加されていません。
次の方法でトークンを取得しました。
<?php
require '../src/facebook.php';
$facebook = new Facebook(array(
'appId' => '**************',
'secret' => '**********************************'
));
// Get User ID
$user = $facebook->getUser();
$token = $facebook->getAccessToken();
echo $token;
if ($user) {
try {
$facebook->setFileUploadSupport(true);
$album = $facebook->api('/me/albums ');
print_r($album);
} catch (FacebookApiException $e) {
error_log($e);
$user = null;
}
}
?>
<!doctype html>
<html xmlns:fb="http://www.facebook.com/2008/fbml">
<head>
<title>php-sdk</title>
<style>
body { font-family: 'Lucida Grande', Verdana, Arial, sans-serif; }
h1 a { text-decoration: none; color: #3b5998; }
h1 a:hover { text-decoration: underline; }
</style>
</head>
<body>
<h1>php-sdk</h1>
<?php if ($user): ?>
<a href="<?php echo $logoutUrl; ?>">Logout</a>
<?php else: ?>
<div>
Login using OAuth 2.0 handled by the PHP SDK:
<a href="<?php echo $loginUrl; ?>">Login with Facebook</a>
</div>
<?php endif ?>
<h3>PHP Session</h3>
<pre><?php print_r($_SESSION); ?></pre>
<?php if ($user): ?>
<h3>You</h3>
<img src="https://graph.facebook.com/<?php echo $user; ?>/picture">
<h3>Your User Object (/me)</h3>
<pre><?php print_r($user_profile); ?></pre>
<?php else: ?>
<strong><em>You are not Connected.</em></strong>
<?php endif ?>
<!--h3>Public profile of Naitik</h3>
<img src="https://graph.facebook.com/naitik/picture"-->
<?php //echo $naitik['name']; ?>
</body>
</html>
私は何が欠けていますか?
助けてください、ありがとう。