0

我有一个正在构建的移动微型网站,目前我无法让 facebook 连接到与黑莓一起工作。我收到错误“ _ __ _发生错误。请稍后再试。”

我已经在我可以使用的所有其他设备上对此进行了测试,只有黑莓会给我带来问题。

这是我用来加载应用程序的代码。

<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({
  appId      : 'xxxxxxxxxxxxxxxxx', // App ID
  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.statusChange', handleStatusChange);
};

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

<script>
function loginUser() {    
 FB.login(function(response) { }, {scope:'email'});     
 }
</script>
<script>
function handleResponseChange(response) {
  document.body.className = response.authResponse ? 'connected' : 'not_connected';
  if (response.authResponse) {
    console.log(response);
    updateUserInfo(response);
  }
}
</script>


<script>
function updateUserInfo(response) {
 FB.api('/me', function(response) {
  window.location.href='home.php';
 });
}
</script>


<div id="login"><p><button id="fblogin" onClick="loginUser();"></button></p></div>
4

1 回答 1

0

发现 OAuth 更改正在破坏它。
https://developers.facebook.com/bugs/416132398431057?browse=search_4fd05d1660f9a9c22137268

于 2012-06-13T20:46:48.777 回答