Hi all!
I have my implementation working where I can post to a User’s wall, but I’m trying to post to their friend’s wall.
Does anyone have this working?
var options = {
method: "feed",
link: "http://happy.link.com",
caption: "Such caption, very feed.",
from: fromFbId,
to: toFBId
};
$cordovaFacebook.showDialog(options)
.then(function(success) {
toast.message('Posted');
}, function (error) {
// error
});
Any ideas?
Thanks!