I have the following feed dialog code. Users report me that they are unable to share but from my machine even using different browsers without any history it works perfectly. What could the problem be? What's a good checklist to debug this problem?
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>