Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.