Facebook の送信ダイアログ機能でヘルプが必要です。送信ダイアログが表示されません。エラーは発生しませんが、送信ダイアログ ボックスが表示されません。
以下のコードの問題は何ですか?
FB.login(function(response) {
if (response.authResponse) {
sendDialog();
}
}
var sendDialog = function() {
FB.ui({
method: 'feed',
display: 'iframe',
name: 'sample',
link: 'https://www.sample.com/'
});
}