Skip to main content

Sharing for Webmasters

This document describes how you optimize web-hosted content that people share to Spaces, regardless of whether it's shared from the desktop or mobile web or a mobile app.

This document provides info about:

  • Open Graph markup
  • Testing Your Markup
  • Test Whether Spaces User-Agent Is Handled Properly
  • Media Content Types

Open Graph Markup

Most content is shared to Spaces 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 Spaces. 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 Spaces 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 Spaces.

Here's an example of content formatted with Open Graph tags for optimal display on Spaces:

Markup Example

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-SpacesJumbo-v2.jpg" />

The properties include descriptive meta-data about the article that we specifically want to present when someone shares the article.

Basic Tags

These are the most basic meta tags that you should use for all content types:

TagDescription
og:urlThe 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.
og:titleThe title of your article without any branding such as your site name.
og:descriptionA brief description of the content, usually between 2 and 4 sentences. This will displayed below the title of the post on Spaces.
og:imageThe URL of the image that appears when someone shares the content to Spaces. See below for more info, and check out our best practices guide to learn how to specify a high quality preview image.
fb:app_idIn order to use Spaces Insights you must add the app ID to your page. Insights lets you view analytics for traffic to your site from Spaces. 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:

TagDescription
og:typeThe 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 website. Each URL should be a single object, so multiple og:type values are not possible. Find the full list of object types in Object Types Reference
og:localeThe locale of the resource. Defaults to en_US. You can also use og:locale:alternate if you have other available language translations available. Learn about the locales we support in our documentation on localization.

Test Your Markup

To see how your markup appears to the Spaces 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.

Test Whether Spaces User-Agent Is Handled Properly

  1. Open your browser.
  2. Change the user-agent to match FB user-agent. For more information on changing the user-agent, see http://osxdaily.com/2013/01/16/change-user-agent-chrome-safari-firefox/:
  3. Load the problem URL.
  4. Set the user-agent to that of a mobile browser, say Safari - iPhone: Develop Menu > User-Agent > SafariiOS 10iPhone
  5. Load the problem URL.
  6. If this is a user-agent issue, the page will load correctly in Step 5 but not Step 3.

Media Content Types

You can add additional markup if your content includes audio, video, or location information. See all standard object properties in our Object Types Reference.

Video

You can use og:video for all content types. This section describes how to use additional tags to optimize the look of videos on Spaces.

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 TagDescription
og:videoThe URL for the video. If you want the video to play in-line in Feed, you should use the https:// URL if possible.
og:video:urlEquivalent to og:video
og:video:secure_urlSecure URL for the video. Include this even if you set the secure URL in og:video.
og:video:typeMIME type of the video. Either application/x-shockwave-flash or video/mp4.
og:video:widthWidth of video in pixels. This property is required for videos.
og:video:heightHeight of video in pixels. This property is required for videos.
og:imageSpecify an image for a high quality preview in Feed

Images

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.

Field NameType
og:imageURL 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.
og:image:urlEquivalent to og:image
og:image:secure_urlhttps:// URL for the image
og:image:typeMIME type of the image. One of image/jpeg, image/gif or image/png
og:image:widthWidth of image in pixels. Specify height and width for your image to ensure that the image loads properly the first time it's shared.
og:image:heightHeight of image in pixels. Specify height and width for your image to ensure that the image loads properly the first time it's shared.