I have been lurking around on google checking on how to embedd facebook video into my website. I have found a steps that would make it work but the problem is, if ill open the website in my iphone or any smartphone the video is not loading at all.
The information I have gathered in embedding facebook videos is that i have to get the unique id of the video that can just be seen in the browser. Here is the sample code i have:
<object width="400" height="300" >
<param name="allowfullscreen" value="true" />
<param name="allowscriptaccess" value="always" />
<param name="movie" value="http://www.facebook.com/v/UniqueVideoId" />
<embed src="http://www.facebook.com/v/UniqueVideoId" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="400" height="224">
</embed>
</object>
What else do i need to do to make the facebook video work on iphone or any smart phone?