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.

hi i am trying to embed facebook video using below code

<object width="400" height="224" >
<param name="allowfullscreen" value="true" />
<param name="allowscriptaccess" value="always" />
<param name="movie" value="http://www.facebook.com/v/115316011865684" />
<embed src="http://www.facebook.com/v/115316011865684" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="400" height="224">
</embed>
</object>

its working fine, but is there any similar way to show video thumbnail from video id? example http://www.facebook.com/thumbnail/115316011865684 or something else?

share|improve this question

1 Answer

up vote 2 down vote accepted

You can get the thumbnail picture from the video id by going to this Graph API URL - https://graph.facebook.com/VIDEO_ID/picture, e.g. https://graph.facebook.com/115316011865684/picture

share|improve this answer
thanks, it helped me :)... can i get video title in this way? – Mohammad Shahid Aug 16 '11 at 19:44
To get the video title, make a call to graph.facebook.com/VIDEO_ID and look for the "name" field returned. The "picture" field will also be returned with this call and corresponds to the thumbnail. For more details see developers.facebook.com/docs/reference/api/video – C Abernathy Aug 22 '11 at 18:00

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.