I am creating a new facebook web app, in which there's a function allow user to post to other app-user timeline, and here's the code
FB.ui({
api_id: '1234567890',
method: 'feed',
link: 'http://www.example.com/fbshare-test/',
caption: 'Example Test',
picture: 'http://www.example.com/fbshare-test//img/share.jpg',
to: '1234567890'
}, function(response){
console.log(response);
});
it works properly. But, referring to facebook official doc, https://developers.facebook.com/docs/sharing/reference/feed-dialog/v2.0, the FB.ui.feed is deprecated and replaced by FB.ui.share.
But the new FB.ui.share can't not post to other app-user timeline.
Is there any alt method to replacement my current FB.ui feed function?