Hi there, below is my FB api call in PHP5, which successfully publishes my feed to the App's Wall and the user's news feed.
$facebook->api_client->stream_publish($message, $attachment, $action_links, APP_ID, $facebook_uid);
I'd like to know if there's a way to publish the same feed to the app's wall, user's news feed AND user's own wall - all three places in one publish.
I could send the stream twice (once for the app and once for user's wall) but it gets hard to manage the comments/likes later on.
Any suggestion? Thanks in advance.