gpt4 book ai didi

facebook - 为什么 FB.getLoginStatus() 总是返回 response.status "unknown"?

转载 作者:行者123 更新时间:2023-12-05 07:59:49 25 4
gpt4 key购买 nike

为什么即使我已经验证了我的应用程序,它仍然在 FB.getLoginStatus() 的响应中返回“未知”?

我有这个代码:

<html>
<head></head>
<body>
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : '###',
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});

//check status...
FB.getLoginStatus(function(response) {
console.log('The status of the session is: ' + response.status);
});
};

// 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));

// Here we run a very simple test of the Graph API after login is successful.
// This testAPI() function is only called in those cases.
function testAPI() {
console.log('Welcome! Fetching your information.... ');
FB.api('/me', function(response) {
console.log('Good to see you, ' + response.name + '.');
});
}
</script>
<a href="javascript:FB.login();">Login</a>
</body>
</html>

我期待这个数据的结果:

{
status: "connected",
authResponse: {
userID: "###",
signedRequest: "###",
expiresIn: "###",
accessToken: "###"
}
}

有没有其他方法可以获取FB JS SDK中用户的登录状态?我已经尝试过 FB.Event.subscribe() 但还是一样。什么都没发生..-_-

最佳答案

不要使用“http”作为您的开发主机

只需使用 https 而不是 http 就可以了!

关于facebook - 为什么 FB.getLoginStatus() 总是返回 response.status "unknown"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20729007/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com