訪問者がリンクを共有した後に非表示のダウンロード ボックスdivを表示しようとしています。FBを呼び出せるように定義する方法がわかりません。誰かが私を助けることができますか?
<div id='fb-root'></div>
<div id="download_box" style="display: none;">
Download Box (whatever that means) goes here
</div>
FB.init({appId: "437410746335629", status: true, cookie: true});
function postToFeed() {
// calling the API ...
var obj = {
method: 'feed',
link: 'https://developers.facebook.com/docs/reference/dialogs/',
picture: 'http://fbrell.com/f8.jpg',
name: 'Facebook Dialogs',
caption: 'Reference Documentation',
description: 'Using Dialogs to interact with users.'
};
function callback(response) {
if (response && response.post_id) {
document.getElementById('download_box').style.display = 'block';
} else {
alert('You must share your post before you can download.');
}
}
FB.ui(obj, callback);
}