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 have a blog on my app and on this blog I usually put some youtube videos and when I share the links of these pages on Facebook there's no thumbnail. Is there a way to do this?

I have tried to put meta-data with open graph protocol, with the youtube link but no luck.

Is this possible?

EDITED

In my app I was including the OG video tag like this:

%meta{ :property => "og:title" , :content => "#{post.title}" }
%meta{ :property => "og:type" , :content => "article" }
%meta{ :property => "og:url" , :content => "#{post_url(post.slug).sub('https:', 'http:')}" }
-if post.video_thumbnail && post.video_thumbnail != ""
  %meta{ :property => "og:video" , :content => "http://www.youtube.com/watch?v=#{post.video_thumbnail}"}

I found the answer on this question: How to get thumbnail of YouTube video link using YouTube API?

Youtube API lets you get images from the video if used this URL:

http://img.youtube.com/vi/<insert-youtube-video-id-here>/0.jpg

So I included that link as my OG image tag like this:

%meta{ :property => "og:image" , :content => "http://img.youtube.com/vi/#{post.video_thumbnail}/0.jpg" }

And it work perfectly.

share|improve this question

closed as off topic by HackedByChinese, Mudassir, Aleks G, Adriano, Bali C Oct 30 '12 at 8:46

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

up vote 4 down vote accepted

Use Facebook's OG Debug tool to check the OG metadata that Facebook can see for your page. Go to https://developers.facebook.com/tools/debug

It's entirely possible to use the youtube video's thumbnail as your own content's OG image, but you'll probably need to use the YouTube API to get a URL to the thumbnail for your embedded video, and use that as the og:image meta content.

share|improve this answer

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