CyberSecurity // Azure // Frontend // Svelte // Cloud Native // Software // CyberSecurity // Azure // Frontend // Svelte // Cloud Native // Software

Open graph protocol

Cover for Open graph protocol

Created at Facebook

The Open Graph Protocol (or OGP for short) was created at Facebook in 2010. It's primary use was to give external sites shared on Facebook the same functionality as Facebook-native objects (articles/profiles/images/...). Web developers could enrich their website by adding additional metadata so that, when shared via Facebook, a nice card would appear.

The example below shows an article from the New York Times being shared on Facebook. Their website uses the OGP to provide an article title, description, author and image-url. Using all this information, Facebook is able to generate the preview card shown below:

A card generated with the OpenGraph data available

Image: A card generated with the OpenGraph data available

Widespread adoption

Since then, the OGP has been wildly adopted by almost all mainstream content websites and social media platforms. Whenever you share a popular website on Microsoft Teams, Discord, Slack or Twitter, chances are that a neat little preview is generated.

Sharing a post on Twitter

Image: Sharing a post on Twitter

How to use

Implementing the OGP for your own website is easy. There are 4 required metadata properties that are required:

Theses properties need to be added to the HTML of our website, more specifically the head section. This makes it technology independent. It doesn't matter if you're building a website with Wordpress, Sveltekit or React. Note that they make use of the existing meta HTML tag . Below is an example for the card of the New York Times article that's shown earlier:

// XML //

Optional tags

A few other optional Open Graph tags exist to add more information. One of the most commonly used is og:description, providing a small description of the object being shared. Other options such as og:locale, og:site_name, og:video and their description are listen on ogp.me/#optional .

Structured properties

Some properties allow for the nesting of sub-properties. This way more information can be added to an existing property. The og:image tag is a good example, as is can be refined by adding a og:image:type, og:image:width or og:image:height tag.

// XML //

For more details and all the possible options, it is best to refer to the documentation.

Exotic OG tags

Over the years, some social media have started reading custom OG tags. Twitter, for example, interprets the following tags which aren't part of the Open Graph Protocol standard.

// XML //

Adding theses platform specific tags can be valuable when your content get's shared on that platform. More information about the Twitter tags can be found on their developers documentation site .

How to validate

To validate and check the tags provided by your site (or someone else's) a couple of handy tools exits:

These tools will even generate a nice little preview of how your content is displayed on some major platforms!