I have used the Facebook share dialog to allow users to post links from within my webapp for a long time without problem. However since a couple of weeks back it is not working any more. I have not made any changes and I cannot find anything in the FB documentation either.
I use this code (image is an URL to a png):
FB.ui({
method: 'share',
title: 'LISTEN TO: ' + title,
href: 'https://www.papereed.com/player?id='+_shareableArticle.id,
picture: image,
caption: caption,
description: description,
message: ''
});
Earlier the picture, caption and description was showing up in the share dialog (and in the post after sharing). Now none of them are showing up, only the default title and picture from www.papereed.com are displayed in the share dialog. The link (href) still points to the correct place however.
I hope someone can explain what (if anything) has changed with FB.ui and what I need to do to get sharing with picture and caption to work again. Thanks!
BTW. Go to www.papereed.com/player and select the share option on one of the articles, then press FB icon and see the (non-working) share dialog for yourself.