I'm setting up a website so that when users share links to video pages on Facebook that the related video is embedded and playable within Facebook. This is working great for Flash but it isn't working on the iPad (iOS 5.1.1). It gives an error message saying that this video cannot play on my device because it doesn't support Flash. However, I am providing the relevant .mp4 video file and type as described in the Facebook Open Graph protocal docs in the "Attaching Audio and Video Data" section.
Here are the relevant <meta> tags (URLs changed to protect the innocent):
<meta property="og:video" content="http://bestvideosever.com/player/loader.swf?vid=5">
<meta property="og:video:width" content="400">
<meta property="og:video:height" content="225">
<meta property="og:video:type" content="application/x-shockwave-flash">
<meta property="og:video:secure_url" content="https://bestvideosever.com/player/loader.swf?vid=5">
<meta property="og:video" content="http://bestvideosever.com/vids/number5.mp4">
<meta property="og:video:type" content="video/mp4">
The other required Open Graph tags are included above these. I've tested the site on Facebook's Debugger but it says everything is good to go. Everything is as expected there.
What am I doing wrong? What are things I can try? Thanks!
On a side note, that og:video:secure_url doesn't seem to be getting any love either. At this point, I'm much more concerned with the above issue.