黑莓 - Facebook连接网络

时间:2012-06-13 19:27:05

标签: facebook blackberry

我有一个移动微型网站我正在建设,目前我无法让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>

1 个答案:

答案 0 :(得分:0)