サイトでFacebookのFB接続とログインボタンを使用しています。
それを使用してログインし、ログイン時にページをリロードし、PHP で access_token を持つ Cookie を取得しようとしましたが、失敗しました。以下は私のjsコードです:
window.fbAsyncInit = function() {
FB.init({
appId : 'xxxxxxxx',
status : true,
cookie : true,
xfbml : true,
oauth : true
});
FB.Event.subscribe('auth.login', function(response) {
window.location.reload();
});
};
(function(d){
var js, id = 'facebook-jssdk'; if (d.getElementById(id)) {return;}
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all.js";
d.getElementsByTagName('head')[0].appendChild(js);
}(document));
Fb ログイン ボタンのコード:
<div class="fb-login-button" scope="email,user_checkins" >Login with Facebook</div>
Facebookを使用してユーザーがログインすると、access_tokenを使用してデータを取得しようとしますが、Cookieからaccess_tokenを取得しません。私は次のコードを使用しています:
$cookie = $this->get_facebook_cookie(APP_ID, APP_SECRET);
echo $cookie['access_token'];
if(isset($cookie['access_token'])){
$user = json_decode(@file_get_contents('https://graph.facebook.com/me?access_token=' .$cookie['access_token']));
echo $user->id;
if(isset($user->id)){
// my stuff
}
}
クッキーさえ取得していないのではないかと思います。クライアント側でログに記録している間。それでは、どうすればPHPでデータを取得できますか? PHP側でもログインプロセス全体をもう一度繰り返す必要がありますか? どうすれば対処できますか?