アプリから acces_token のみを取得したい facebookapp のデモを行っています。アプリは完全にクライアント側であり、サーバー側の可能性はありません。この時点で、javascript sdk を非同期で正しくロードし、このパラメーターで Facebook を初期化します。
FB.init(
{
appId: 'XXXX', //XXXX is my AppID
// channelUrl: http://bla,
status: true,
cookie: true,
xfbml: true,
oauth: true
});
私の問題は、機能があることです:
FB.getLoginStatus(function (response)
{
alert('Check login: ' + response);
console.log("3");
if (response.status === 'connected')
{
// the user is logged in and has authenticated your
// app, and response.authResponse supplies
// the user's ID, a valid access token, a signed
// request, and the time the access token
// and signed request each expire
var uid = response.authResponse.userID;
var accessToken = response.authResponse.accessToken;
console.log("Access Token: " + accessToken);
}
else if (response.status === 'not_authorized')
{
// the user is logged in to Facebook,
// but has not authenticated your app
}
else
{
// the user isn't logged in to Facebook.
}
});
何の反応もありません。
なぜだかわかる方いますか??