This document describes how you optimize web-hosted content that people share to Facebook, regardless of whether it's shared from the desktop or mobile web or a mobile app.
This document provides info about:
Most content is shared to Facebook as a URL, so it's important that you mark up your website with Open Graph tags to take control over how your content appears on Facebook. For your website to be shared correctly by our crawler, your server must also use the gzip and deflate encodings.
Without these Open Graph tags, the Facebook Crawler uses internal heuristics to make a best guess about the title, description, and preview image for your content. Designate this info explicitly with Open Graph tags to ensure the highest quality posts on Facebook.
Here's an example of content formatted with Open Graph tags for optimal display on Facebook:
For example, here's how to mark up an article, news story or blog post with og:type="article"
and several additional properties:
<meta property="og:url" content="http://www.nytimes.com/2015/02/19/arts/international/when-great-minds-dont-think-alike.html" /> <meta property="og:type" content="article" /> <meta property="og:title" content="When Great Minds Don’t Think Alike" /> <meta property="og:description" content="How much does culture influence creative thinking?" /> <meta property="og:image" content="http://static01.nyt.com/images/2015/02/19/arts/international/19iht-btnumbers19A/19iht-btnumbers19A-facebookJumbo-v2.jpg" />
The properties include descriptive meta-data about the article that we specifically want to present when someone shares the article.
These are the most basic meta tags that you should use for all content types:
Tag | Description |
---|---|
| The canonical URL for your page. This should be the undecorated URL, without session variables, user identifying parameters, or counters. Likes and Shares for this URL will aggregate at this URL. For example, mobile domain URLs should point to the desktop version of the URL as the canonical URL to aggregate Likes and Shares across different versions of the page. |
| The title of your article without any branding such as your site name. |
| A brief description of the content, usually between 2 and 4 sentences. This will displayed below the title of the post on Facebook. |
| The URL of the image that appears when someone shares the content to Facebook. See below for more info, and check out our best practices guide to learn how to specify a high quality preview image. |
| In order to use Facebook Insights you must add the app ID to your page. Insights lets you view analytics for traffic to your site from Facebook. Find the app ID in your App Dashboard. |
You may also want to add two additional tags to improve distribution of your content and more engagement:
Tag | Description |
---|---|
| The type of media of your content. This tag impacts how your content shows up in Feed. If you don't specify a type,the default is |
| The locale of the resource. Defaults to |
The full list of standard object properties is in our Object Properties Reference.
To see how your markup appears to the Facebook Crawler enter a URL into Sharing Debugger. It will show which meta tags the crawler scrapes as well as any errors or warnings.
The debugger also triggers a scrape of your page, so if you do have errors in your HTML you can use the debugger to update your content. See Updating Objects to learn more.
facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)
You can add additional markup if your content includes audio, video, or location information. See all standard object properties in our Object Types Reference.
You can use og:video
for all content types. This section describes how to use additional tags to optimize the look of videos on Facebook. Facebook supports both mp4 and Flash videos.
Use a secure URL for both the og:video:url
and og:video:secure_url
tags to make your video eligible to play in-line in Feed. Note that your video is not guaranteed to play in-line based on a variety of factors.
Meta tag | Description |
---|---|
| The URL for the video. If you want the video to play in-line in Feed, you should use the https:// URL if possible. |
| Equivalent to |
| Secure URL for the video. Include this even if you set the secure URL in |
| MIME type of the video. Either |
| Width of video in pixels. This property is required for videos. |
| Height of video in pixels. This property is required for videos. |
| Specify an image for a high quality preview in Feed |
Use this set of properties for content that contains more than one image. See Sharing Best Practices for guidance on how best to use og:image
.
Meta tag | Description |
---|---|
| URL for the image. To update an image after it's been published, use a new URL for the new image. Images are cached based on the URL and won't be updated unless the URL changes. |
| Equivalent to |
| https:// URL for the image |
| MIME type of the image. One of |
| Width of image in pixels. Specify height and width for your image to ensure that the image loads properly the first time it's shared. |
| Height of image in pixels. Specify height and width for your image to ensure that the image loads properly the first time it's shared. |
Please refer to our 3D Posts Open Graph Sharing document.