開発者サイトの例を使用します。
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
オブジェクトはロードされているので、何が悪いのか本当にわかりません。これを試して修正するためのアイデアはありますか?
ありがとう。