我在应用程序页面添加了类似按钮:
<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)
答案 0 :(得分:0)
我有同样的问题。我在Facebook开发论坛上发现了这个帖子。一位老兄说你需要将应用程序的API密钥添加到初始化中。像这样:
FB.init({appId: 'xxxxx', api_key: 'yyyyy', status: true, cookie: true,
xfbml: true});
然而,这并没有解决我的问题。可能会帮助你。