var strFaceBookKey = "<%=strFaceBookKey%>";
var redirecturl = window.location.href;
console.log("redirect " + redirecturl);
function statusChangeCallback(response) { // Called with the results from FB.getLoginStatus().
console.log('statusChangeCallback');
console.log(response); // The current login status of the person.
if (response.status === 'connected') { // Logged into your webpage and Facebook response.authResponse.accessToken.
console.log("connected to fb");
DirectLogin(response.authResponse.accessToken);
} else if (response.status === 'not_authorized') {
AskPermissionForLogin();
}
else { // Not logged into your webpage or we are unable to tell.
console.log("not connected to fb");
}
}
if (userid == 0) {
$.ajax(
{
url: "https://connect.facebook.net/en_US/sdk.js#version=v2.8&appId="+ strFaceBookKey + "&status=true&cookie=true&xfbml=true",
dataType: 'script',
cache: true,
success:function(script, textStatus, jqXHR)
{
FB.init(
{
appId: strFaceBookKey, status: true, cookie: true, xfbml: true, version: 'v2.9'
}
);
FB.getLoginStatus(function (response) { // Called after the JS SDK has been initialized.
console.log("Inside FB login status");
statusChangeCallback(response); // Returns the login status.
});
}
});
}
, но я не могу войти в систему или перенаправить на facbook sdk
в консоли, это дает следующие ошибки:
Статус входа в FB
(индекс) : 143 statusChangeCallback
(index): 144 Object authResponse: undefined status: "unknown" proto : Object
(index): 153 не подключено к fb
(индекс): 1 Отказано отображать 'https://www.facebook.com/connect/xd_arbiter/r/iPrOY23SGAp.js?version=42#channel = f7af9a287e994c & origin = https% 3A% 2F% 2Fab c .com' во фрейме, потому что для параметра «X-Frame-Options» установлено значение «deny».