我有以下提要对话框代码。用户报告我说他们无法分享,但即使在我的机器上使用没有任何历史记录的不同浏览器,它也能正常工作。问题可能是什么?什么是调试此问题的好清单?
FB.init({appId: "1111", status: true, cookie: true});
function postToFeed(description) {
var obj = {
method: 'feed',
link: 'http://example.com/',
picture: 'http://example.com/static/facebook-app-icon.png',
name: 'Example app',
caption: 'Example caption!',
description: description
};
FB.ui(obj);
}
<div id='fb-root'></div>
<a onclick="var msg=getShareMsg(); postToFeed(msg); return false;">
<img src='/static/facebook.png' alt="Share" title="Share on Facebook">
</a>