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 developed an application for facebook. I want to post a video on the users wall using the graph API. What can I do to publish video on facebook wall?

share|improve this question
You should search through documentation developers.facebook.com/docs/reference/rest/video.upload – genesis Jul 5 '11 at 11:43

2 Answers

Recently i have to do the same thing and to do it is very simple.

The parameters you must use are:

  • source = urlencode ( url/to/swf )
  • link = url/to/web
  • picture = url/to/picture

And no more, so if you use the graph api you the url will be like:

https://graph.facebook.com/userID/feed?access_token=&source=urlencode (url/to/swf)&picture=url/to/picture&link=url/to/web

Hope it will help.

share|improve this answer

As of April 2011, Facebook has added the ability to upload videos through the new graph API:

http://developers.facebook.com/blog/post/493/

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.