I am trying to embed a facebook video on my website but it gives "Video Unavailable. this video has either has been removed from facebook or is not visible".
video is public to everyone, is not deleted and I can watch it on facebook via other browsers that I am not logged in.
I tried both below embed codes, neither is worked.
1
<object width="500" height="300">
<param name="movie" value="http://www.facebook.com/v/VIDEO_ID"></param>
<param name="allowFullScreen" value="true"></param>
<param name="allowscriptaccess" value="always"></param>
<embed src="http://www.facebook.com/v/VIDEO_ID" type="application/x-shockwave-flash" width="500" height="300" allowscriptaccess="always" allowfullscreen="true">
</embed>
</object>
2
<object width="500" height="300">
<param name="allowfullscreen" value="true" />
<param name="movie" value="http://www.facebook.com/v/VIDEO_ID" />
<embed src="http://www.facebook.com/v/VIDEO_ID" type="application/x-shockwave-flash" allowfullscreen="true" width="500 height="300">
</embed>
</object>
Any idea? thanks!
<embed>atwidth="500you're missing a " - but I doubt this is your issue. – Coulton Nov 3 '11 at 12:26