私はOAuth 2.0のに私の古いFacebookアプリを移行する次の問題が生じています:Facebookアプリ:OAuthExceptionは:アクティブなアクセストークンを使用する必要があります
私は(PHPのコード内の)ユーザープロファイルを読み込むしようと私が取得エラー:「OAuthException:アクティブなアクセストークンは、現在のユーザーに関する情報を照会するために使用されている必要があり」
アプリケーションはJavascriptを経由してログイン操作を行い、それはPHPから私は、ユーザーのプロファイルを取得するページにリダイレクト。
javascriptのコード:
<script type="text/javascript">
window.fbAsyncInit = function() {
FB.init({
appId : '<?php echo $facebook->getAppId() ?>',
cookie : true, // enable cookies to allow the server to access the session
xfbml : true, // parse XFBML
oauth : true // enable oauth
});
// whenever the user logs in, we refresh the page
FB.Event.subscribe('auth.login', function(response) {
window.location="index.php";
});
};
(function() {
var e = document.createElement('script');
e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
e.async = true;
document.getElementById('fb-root').appendChild(e);
}());
function login() {
FB.login(function(response) {
if (response.authResponse) {
//console.log('Welcome! Fetching your information.... ');
FB.api('/me', function(response) {
//alert('Good to see you, ' + response.name + '.');
var url="./code.php";
window.location=url;
});
} else {
alert("Debes de identificarte y aceptar las condiciones para obtener el descuento");
}
}, {scope: 'email'});
};
</script>
(code.php中)PHPの一部:
require 'facebook-php-sdk/src/facebook.php';
// Create our Application instance (replace this with your appId and secret).
$facebook = new Facebook(array(
'appId' => 'xxxxxxxxxxxxxxxxx',
'secret' => 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'
));
$user = $facebook->getUser();
if ($user) {
try {
// Proceed knowing you have a logged in user who's authenticated.
$me = $facebook->api('/me');
.....
私は別の記事を読み、JavaScriptのログイン応答からaccess_tokenはを取得またはのようなものを試してみましたクッキーから、そしてapi( 'me /?access_token = ...)への呼び出しを行いますが、それはうまくいきませんでした。
編集:ありがとう、誰にでも感謝しています。 、PHPコードに&パースsigned_request
を取得し、ユーザーがあなたのアプリを認証し、与えalreadであれば(access_token
を抽出します。
おかげ
)私は(それはここで午前4:30です)何かが欠落している可能性がありますが、あなたは(ログインを呼び出しています関数?もしあなたがいたら、response.authResponseのデバッグ出力は何ですか? – brandwaffle