android - Cordova facebook plugin empty content on share dialog -
i use code show facebook share dialog
var post_id = fid.split('_'); var options = { method: "feed", link: 'http://www.facebook.com/permalink.php?story_fbid=' + post_id[1] + '&id=' + post_id[0] };
$cordovafacebook.showdialog(options) .then(function(success) { console.log(success) alert('options'); }, function(error) { console.log(error) }); on ios it's work ok, on android empty content http://prntscr.com/8m9vm1
what can reason it?
change 'href' 'link' in buildcontent function in file connectplugin.java. works me :)
Comments
Post a Comment