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 trying to set up a page which can be properly scraped by Facebook when it's shared/liked. The page will have a YouTube video associated with it, so in the content attribute of the og:video tag, should I put the YouTube video embed link or the actual youtube page link for it to appear on Facebook with the little "Preview" button that plays the video in Facebook?

Hope someone can help! Thanks!

share|improve this question

4 Answers

You can see from the source code of a YouTube page the og:video tag is in the following format

<meta property="og:video" content="http://www.youtube.com/v/k86xpd26M2g">

You can also see an example of the meta data used from YouTube simplified in the source code of the following URL: http://fb.stevelarsen.co.uk/example.html

You can read more about the Open Graph protocol here: http://ogp.me/

share|improve this answer
Note that these tags are not present on YouTube videos that have embedding disabled. – Tamlyn Jul 4 '12 at 12:28
<html xmlns:og="http://ogp.me/ns#"> 
    <head>
        ...
        [REQUIRED TAGS]
        <meta property="og:video" content="http://example.com/awesome.flv" />
        <meta property="og:video:height" content="640" />
        <meta property="og:video:width" content="385" />
        <meta property="og:video:type" content="application/x-shockwave-flash" />
        ...
    </head>

The link of the .flv file.... check out https://developers.facebook.com/docs/opengraph/#types

share|improve this answer
1  
This links to a hosted flv video file but what if we want to share a youtube video? – David Ball Apr 30 '12 at 10:35

Here's what I found:

Using Facebook's Open Graph Protocol, Publisher can now use any video from any URL, as long as the URL has correctly formatted metadata in the < head > of its HTML. Here's the list of information that should be in the < head >:

Thumbnail image's URL: < meta property="og:image" content="image_src URL" >
SWF URL: < meta property="og:video" content="video_src URL" >
Your page's URL: < meta property="og:url" content="URL" >
Title: < meta property="og:title" content="title" >
Description: < meta property="og:description" content="description" >
Video pixel width: < meta property="og:video:width" content="video_width" >
Video pixel height: < meta property="og:video:height" content="name="video_height" >
Content Type: < meta property="og:type" content="video" >

share|improve this answer
up vote -1 down vote accepted

I figured it out. I had a look at how Collegehumor.com does it and they include a bunch of stuff not mentioned in the Facebook API. Rather than just the following:

<meta name="og:video" content="whatever"></meta>
<meta name="video_style" content="whatever"></meta>
<meta name="video_height" content="whatever"></meta>
<meta name="video_width" content="whatever"></meta>

you also need link rel="video_src" and it helps to have videothumbnail and og:image too - I'm not entirely sure which one did it but there you go. That works :)

share|improve this answer
1  
So what'd you end up putting in the <og:video> tag? The YouTube URL? Also, what'd you put in the video_src tag? – Horace Loeb Aug 2 '11 at 4:38
Daniel Hough, you didn't really answered your question here... You did not specify which URL you used for the video source. – Felipe Brahm Jan 9 '12 at 7:41
The url I used, if I remember correctly - it was the URL of the flv file. – Daniel Hough Jan 9 '12 at 11:45
@DanielHough can you please provide a working Opengraph example I mean the markup which would embed a real youtube video. – mihai Jun 17 '12 at 1:15

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.