FB.ui(
{
method: 'feed',
name: 'Facebook Dialogs',
link: 'https://developers.facebook.com/docs/reference/dialogs/',
picture: 'http://fbrell.com/f8.jpg',
caption: 'Reference Documentation',
description: 'Dialogs provide a simple, consistent interface for applications to interface with users.'
},
function(response) {
if (response && response.post_id) {
alert('Post was published.');
} else {
alert('Post was not published.');
}
}
);
我得到以下信息:
Error: element not specified
innerError: undefined
message: "element not specified"
起初我以为我错过了“fb-root”元素,但我的身体里有它:
<body onLoad="onLoad()">
<div id="fb-root"></div>
</body>
现在我认为这与我的 Backbone/jQuery Mobile 使用有关,因为一旦加载第一页,正文就会被清除。但是,FB
对象已加载,所以我真的不知道出了什么问题。有什么想法可以尝试解决这个问题吗?
谢谢。