Open Graph tags
Open Graph tags decide what a link to your page looks like when someone shares it. The two that actually matter, and the markup to add them.
What it is
Open Graph is a set of <meta property="og:..."> tags in a page's <head> describing how the page should appear when its URL is pasted somewhere else — a title, a description, an image, a type. It originated at Facebook and is now read by essentially every chat app, social platform and link-preview service.
This check reads the served HTML and asks whether og:title and og:description are both present. Those are the two that change what a shared link looks like; the rest are refinements.
Why it matters
Without them, a platform falls back to guessing: usually the <title> and whatever text it finds first, which is often a nav menu or a cookie banner. The link still works, it just looks unconsidered at the exact moment someone chose to share it.
This is not a ranking factor and it would be dishonest to sell it as one. It is a click-through factor, on traffic you already earned — someone shared your page, and what the preview looks like decides how many people follow it.
How to fix it
with a reference doc<meta property="og:title" content="Page title">
<meta property="og:description" content="Page summary.">
<meta property="og:image" content="https://example.com/card.png">
<meta property="og:url" content="https://example.com/page">Related checks
4This is one of the 75 checks the scanner runs. See what we check for the full list, every severity weight, and how the score is computed from them.