I have a Facebook app, and I am trying to publish a post to user's wall, without notyfing the user with any kind of pop-up dialog (for users who have granted the publish_stream OAuth permission).
I've been searching a lot, and tried many different things, on FB.ui or FB.api.
Finally, I can publish movie on user's wall as FB.api and see movie on user's wall. However, I cannot see the movie on phone (iPhone and Android).
I should automatically publish to user's wall to be able to see movie on Facebook page without moving shared link, but don't. To publish movie automatically is just sharing a link.
Here is my source. What is the problem?
$facebook->api('/me/feed', 'POST',
array(
'message' => "FaceBook",
'picture' => $img,
'cover' => $img,
'source' => $source,
'type' => "application/x-shockwave-flash",
'link' => $URL,
'name' => "filename"
'description'=> "share_text")
)
How is it possible using PHP?
Any answer would be appreciated.