Embed video iframe in facebook wall -


i attempting embed html5 video player on facebook wall in iframe similar youtube or flash videos. cannot use flash political reasons. player must have company branding.

youtube using follows signal opengraph:

<meta property="og:type" content="video"> <meta property="og:video:url" content="https://www.youtube.com/embed/[id]"> <meta property="og:video:secure_url" content="https://www.youtube.com/embed/[id]"> <meta property="og:video:type" content="text/html"> <meta property="og:video:width" content="1280"> <meta property="og:video:height" content="720"> <meta property="og:video:url" content="http://www.youtube.com/v/[id]?autohide=1&amp;version=3"> <meta property="og:video:secure_url" content="https://www.youtube.com/v/[id]?autohide=1&amp;version=3"> <meta property="og:video:type" content="application/x-shockwave-flash"> <meta property="og:video:width" content="1280"> <meta property="og:video:height" content="720"> 

the embed-uri returns page full window video player.

i have set full width video player page myself , directed using similar opengraph tags (and removing flash-ones). not work.

does know secret sauce?

[edit]

as there question tags using, copied html5 part youtube video. apparently doesn't work because have whitelisted facebook...

<meta property="og:type" content="video"> <meta property="og:video:url" content="https://myembedurl.com/video.html"> <meta property="og:video:secure_url" content="https://myembedurl.com/video.html"> <meta property="og:video:type" content="text/html"> <meta property="og:video:width" content="1280"> <meta property="og:video:height" content="720"> 


Comments

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -