次のコードが時々しか機能しないのはなぜですか? ある Facebook アカウントからは送信できますが、すべて問題ありませんが、別の Facebook Messenger からは、削除されたことを示すリンクが表示されません。
同じ結果で urlencoding リンクを試しましたが、これはキャッシュが原因であると思いますか?
誰かが実用的な例を持っていますか?
FB.init({ appId: '1234567890', xfbml: true, cookie: true });
FB.ui({
method: 'send',
name: 'Name example',
link: 'http://example.com/tab.aspx?something=1',
picture: 'https://example.com/UserImg/shareimage_1.png?c=634749391974203784',
display: 'popup',
description: 'Description'
}, function (response) {
if (response == "") {
} else {
}
});