我可以登录,但我需要获取accessToken
,以便可以调用其他 API,例如获取朋友等。
方法 ,getLoginStatus
被调用但没有进入success
响应块。
这是我的代码:
$(document).ready(function() {
window.fbAsyncInit = function() {
FB.init({
appId: <<My appId>>, // App ID
status: true, // check login status
cookie: true, // enable cookies to allow the server to access the session
xfbml: true, // parse XFBML
oauth: true
});
FB.getLoginStatus(function(response){
alert('response='+response);
});
window.setTimeout(checkLogStatus, 1000);
function checkLogStatus(){
alert("check");
// fetch the status on load
FB.getLoginStatus(function(response){
alert('response='+response);
});
}
};
// Load the SDK Asynchronously
(function(d){
var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
if (d.getElementById(id)) {return;}
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all.js";
ref.parentNode.insertBefore(js, ref);
}(document));
});