FB.init致命错误:未捕获OAuthException:验证访问令牌时出错

时间:2010-11-21 00:38:10

标签: php facebook

我在应用程序页面添加了类似按钮:

<div id="fb-root"></div>
<script>
  window.fbAsyncInit = function() {
    FB.init({appId: 'xxxxx', status: true, cookie: true,
             xfbml: true});
  };
  (function() {
    var e = document.createElement('script'); e.async = true;
    e.src = document.location.protocol +
      '//connect.facebook.net/en_US/all.js';
    document.getElementById('fb-root').appendChild(e);
  }());
</script>
<fb:like href="apps.facebook.com/myapp"></fb:like>

第一次虚拟,每件事都可以。 2-3页重新加载后,我有这个错误:

Uncaught OAuthException: Error validating access token. thrown

这有什么问题? 我ave searched in stackoverflow但是找不到任何结果。 (only one

1 个答案:

答案 0 :(得分:0)

我有同样的问题。我在Facebook开发论坛上发现了这个帖子。一位老兄说你需要将应用程序的API密钥添加到初始化中。像这样:

FB.init({appId: 'xxxxx', api_key: 'yyyyy', status: true, cookie: true,
         xfbml: true});

然而,这并没有解决我的问题。可能会帮助你。