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've implemented opengraph as per the Facebook doumentation to embed a video swf on the wall when the page is shared, e.g.

<meta property="og:video" content="http://example.com/awesome.swf" />

This works as intended when Facebook is viewed over http. However when Facebook is viewed over https, the video displays in a new window rather than embedded. This is clearly to avoid browser mixed-mode warnings. I can replace the url in og:video with an https link to the swf, and that does play whether Facebook is viewed over http or https, e.g.

<meta property="og:video" content="https://example.com/awesome.swf" />

While that works, always retrieving the swf over https is not a good solution because https comes at a performance cost. What I need is for the swf to be loaded from an http url when Facebook is viewed over http and an https url when Facebook is viewed over https. It works like this for some sites, e.g. YouTube and Vimeo. Neither of those appear to have anything special in their Open Graph markup that gives the https path.

Is there something I can do, or does Facebook treat Vimeo and YouTube as special cases?

share|improve this question

1 Answer

up vote 2 down vote accepted

We (Facebook) have now launched a solution for this. See https://developers.facebook.com/blog/post/602/

share|improve this answer
Simon, do you have any expectation when this feature should be ready? – vondip Nov 23 '11 at 9:04
I see you've updated the documentation, and I've got it working :) – misterben Nov 25 '11 at 13:38
Yep, launched, Enjoy: developers.facebook.com/blog/post/602 – Simon Cross Nov 28 '11 at 10:34

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.