TryUnfurl

Check How Your Links Unfurl for FREE!

See exactly how your webpage will appear when shared on social media, Slack, Discord, and messaging apps.

Try It Now →

Link Preview Troubleshooting Guide

Link preview broken? This guide covers every common failure scenario, how to diagnose the root cause, and the specific fix for each.

Start here: Paste your URL into TryUnfurl.com — it shows exactly what platform crawlers read from your page, which narrows down the cause immediately.


Step 1 — Identify What's Actually Wrong

Before fixing anything, get precise about the symptom:

What you see Go to
No preview appears at all No preview at all
Preview shows but wrong title Wrong title or description
Preview shows but no image No image in preview
Preview is outdated / showing old content Outdated cached preview
Preview works on some platforms, not others Platform-specific issues
Preview was correct, now suddenly broken Preview broke unexpectedly

No Preview at All

When nothing appears — just the raw URL with no card.

Diagnosis checklist:

  1. Paste the URL into TryUnfurl.com — if metadata appears there, the platform is blocking the preview for a different reason
  2. View your page source and search for og:title — if it's not there, add Open Graph tags
  3. Check if the page returns a non-200 HTTP status (redirect chain too long, 404, 500)
  4. Check if your bot protection is blocking the platform's crawler

Common causes and fixes:

Cause Fix
No Open Graph tags on the page Add og:title, og:description, og:image, og:url
Crawler blocked by firewall or WAF Allowlist Slackbot, Discordbot, facebookexternalhit, LinkedInBot, Twitterbot
Too many redirects (>5 hops) Reduce redirect chain to 1–2 hops
Page returns 4xx or 5xx Fix the URL or server error
JavaScript-only rendering Use SSR or SSG to inject meta tags in initial HTML

Wrong Title or Description

A preview appears but shows the wrong text.

Diagnosis checklist:

  1. Check TryUnfurl — does it show the correct or incorrect title?
    • If correct on TryUnfurl: the platform is showing a cached version — force a refresh
    • If incorrect on TryUnfurl: your metadata is actually wrong — fix the tags
  2. Look for conflicting tags — do og:title, twitter:title, and <title> all agree?
  3. Check whether the page has multiple conflicting og:title tags

Common causes and fixes:

Cause Fix
OG tags contain old copy Update og:title and og:description in the HTML
Platform cached old metadata Use platform debugger tools to force a re-scrape
Conflicting OG and HTML title values Make og:title and <title> consistent
Multiple og:title tags on the page Remove duplicates — only one og:title should exist
JavaScript injecting tags (no SSR) Move meta tags to server-rendered HTML

No Image in Preview

A preview card appears but the image slot is empty.

Diagnosis checklist:

  1. In TryUnfurl, is og:image listed? If not, add it
  2. Open the og:image URL in a private/incognito window — does it load?
  3. Is the image URL absolute HTTPS? (not relative, not HTTP)
  4. Is the image large enough for the platform? (minimum 1200 × 630 px for universal compatibility)
  5. Is og:image:width and og:image:height declared?

Common causes and fixes:

Cause Fix
og:image tag missing entirely Add og:image with an absolute HTTPS URL
Relative URL (/images/og.jpg) Change to full URL: https://yourdomain.com/images/og.jpg
Image returns 404 Fix the image URL or upload the image
Image too small (below platform minimums) Use a 1200 × 630 px image
Image blocked by robots.txt Remove image path from robots.txt Disallow rules
Image behind authentication Move image to a publicly accessible URL
WebP format Convert to JPG or PNG for maximum compatibility

Outdated Cached Preview

You fixed your metadata but the preview still shows old content.

Diagnosis: Paste your URL into TryUnfurl.com — it fetches with no cache. If it shows the correct updated metadata, your page is fixed and the problem is purely the platform's cached result.

Fix by platform:

Platform How to clear
Facebook Sharing Debugger → Scrape Again
Twitter / X Card Validator — each validation clears the cache
LinkedIn Post Inspector → Regenerate
Slack Delete the message, re-share the link
Discord Add ?v=2 to the URL when re-sharing
WhatsApp Delete and resend

Also check: is your CDN caching the old HTML? If so, purging the platform cache won't help — purge your CDN cache first.


Platform-Specific Issues

Slack only

Discord only

LinkedIn only

Twitter / X only


Preview Broke Unexpectedly

The preview was working and now it's broken, with no obvious change.

Common causes:

Diagnosis: Paste the URL into TryUnfurl.com and look at the raw og:image value — then open that URL directly in a private browser window to confirm whether the image still loads.


Still Stuck?

If you've worked through this guide and still can't identify the problem, TryUnfurl.com shows the full raw metadata your page is serving — use that output as the starting point for any deeper investigation, or to confirm exactly what each platform's crawler is seeing.

-> Diagnose your link preview now