简体   繁体   中英

Cordova facebook plugin empty content on share dialog

I use this code to 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, but on Android I get empty content http://prntscr.com/8m9vm1

What can be the reason for it?

Change the 'href' as 'link' in buildContent function in the file ConnectPlugin.java. it works for me :)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM