我有一个localhost网站和脚本与FB.logout().经过一些操作,它无法登录我,我在控制台中看到下一个错误消息:
Refused to display 'https://www.facebook.com/home.PHP' in a frame because it set 'X-Frame- Options' to 'DENY'.
我搜索了所有的StackOverflow,没有找到任何工作的解决方案.网络检查器显示已取消在home.PHP查询附近.
所以我明白脚本试图将Facebook主页加载到一个框架中,但不能因为被禁止.那我该怎么解决呢?为什么不注销()可以为我工作?
我的代码
// Facebook Basic Example window.fbAsyncInit = function() { FB.init({ appId : '579651098766258',status : true,// check login status cookie : true,// enable cookies to allow the server to access the session xfbml : true // parse XFBML }); FB.Event.subscribe('auth.authResponseChange',function(response) { if (response.status === 'connected') { testAPI(); } else if (response.status === 'not_authorized') { FB.login(); } else { FB.login(); } }); }; (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)); function testAPI() { FB.api('/me',function(res) { console.log(res); setTimeout(function(){ FB.logout(); // <-- ERROR },2000); }); }