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.

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.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.