
Here is a simple way to embed a Facebook video into a page. What you’ll need is the id of the video: a number that identifies the video on Facebook.
The ID = URL of the video fine. For example, this is the URL of a video:
http://www.facebook.com/video/video.php?v=1132286745672
1132286745672 the ID.
Now just add this code in the web page:
<object width=”400″ height=”224″ >
<param name=”allowfullscreen” value=”true” />
<param name=”allowscriptaccess” value=”always” />
<param name=”movie” value=”http://www.facebook.com/v/xxx” />
<embed src=”http://www.facebook.com/v/xxx” type=”application/x-shockwave-flash”
allowscriptaccess=”always” allowfullscreen=”true” width=”400″ height=”224″>
</embed>
</object>
And replace XXX with the ID from before
Warning: This trick works only if the privacy settings of the video is set to allow everyone to see it.


