Thas
Thas

Reputation: 11

publish video facebook wall graph api

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?

Upvotes: 1

Views: 3421

Answers (2)

EricP
EricP

Reputation: 3439

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

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

Upvotes: 0

Tolke
Tolke

Reputation: 198

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.

Upvotes: 3

Related Questions