为什么下面的代码有时只有效?我可以从一个 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 {
}
});