Reputation: 4648
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>
Upvotes: 0
Views: 350
Reputation: 350
To build on the questions Joe T was asking:
Upvotes: 0
Reputation: 794
Firstly, are they getting the popup with an error message, or nothing at all?
If it's nothing at all:
If it's the FB popup with an error:
Upvotes: 1