Social Metadata Hardening Skill
Fix social sharing so every important URL unfurls as a rich card across all platforms.
When to Use
- Use when shared links show missing, stale, cropped, or incorrect previews on social and chat platforms.
- Use when auditing Open Graph, Twitter/X card, image URL, alt text, or
metadataBase coverage in a web app.
- Use before launch when every public page needs predictable rich previews across LinkedIn, X, Facebook, WhatsApp, Slack, Discord, and Telegram.
Why Previews Break
| Problem |
Root Cause |
| No preview at all |
Missing og:title, og:description, or og:image |
| Broken image |
Relative URL (must be absolute) |
| Wrong image size |
Image not 1200×630px (OG standard) |
| Plain text card |
Twitter card type missing or set to summary |
| Stale preview |
Platform caching old metadata |
| Metadata missing on crawl |
Tags added by client-side JS (crawlers don't run JS) |
The Gold Standard Metadata Block
Every shareable page needs ALL of these in static HTML:
// Next.js App Router — lib/socialMetadata.js
export function buildSocialMetadata({
title,
description,
path, // '/blog/my-post'
image, // '/images/og/my-post.jpg' or full URL
imageAlt,
imageWidth = 1200,
imageHeight = 630,
}) {
const baseUrl = process.env.NEXT_PUBLIC_BASE_URL || 'https://www.yourdomain.com';
// Always produce an absolute URL
const imageUrl = image?.startsWith('http') ? image : `${baseUrl}${image}`;
const pageUrl = `${baseUrl}${path}`;
// Detect MIME type from extension
const ext = imageUrl.split('.').pop().toLowerCase();
const mimeMap = { jpg: 'image/jpeg', jpeg: 'image/jpeg', png: 'image/png', webp: 'image/webp' };
const imageType = mimeMap[ext] || 'image/jpeg';
return {
title,
description,
alternates: { canonical: pageUrl },
openGraph: {
title,
description,
url: pageUrl,
type: 'website', // use 'article' for blog posts
images: [{
url: imageUrl,
secureUrl: imageUrl, // explicit HTTPS version
width: imageWidth,
height: imageHeight,
alt: imageAlt || title,
type: imageType,
}],
},
twitter: {
card: 'summary_large_image', // NOT 'summary' — that shows a tiny image
title,
description,
images: [imageUrl],
},
};
}
Applying the Helper
Static page
// app/about/page.js
import { buildSocialMetadata } from '@/lib/socialMetadata';
export const metadata = buildSocialMetadata({
title: 'About Us | My Site',
description: 'Learn about our team and mission.',
path: '/about',
image: '/images/og/about.jpg',
imageAlt: 'The My Site team',
});
Dynamic page (blog post, tool page)
// app/blog/[slug]/page.js
import { buildSocialMetadata } from '@/lib/socialMetadata';
export async function generateMetadata({ params }) {
const post = await getPost(params.slug);
return buildSocialMetadata({
title: `${post.title} | My Blog`,
description: post.excerpt,
path: `/blog/${params.slug}`,
image: post.ogImage || '/images/og/default.jpg',
imageAlt: post.title,
});
}
Homepage (app/layout.js or app/page.js)
export const metadata = {
metadataBase: new URL('https://www.yourdomain.com'), // REQUIRED for absolute URLs
...buildSocialMetadata({
title: 'My Site — Tagline Here',
description: 'Site-wide description.',
path: '/',
image: '/images/og/home.jpg',
}),
};
âš ï¸ Set metadataBase when using relative metadata URLs. If your helper already outputs absolute canonical/OG URLs, previews can still work without it.
OG Image Checklist
Good OG images:
- 1200 × 630px (2:1 ratio — works on all platforms)
- Under 8MB (Facebook limit)
- Served over HTTPS
- File name has no spaces (use hyphens)
- Format: JPEG or PNG (WebP works on most but not all crawlers)
- Accessible via GET with no authentication
# Verify your OG image is reachable and correct size
curl -sI https://www.yourdomain.com/images/og/home.jpg | grep -i "content-type\|content-length\|status"
Platform-Specific Notes
Facebook / Meta
- Caches aggressively — use the Sharing Debugger to force recrawl
- Minimum image: 200×200px (but use 1200×630 for quality)
- Needs:
og:title, og:description, og:image, og:url
X / Twitter
- Use
twitter:card = summary_large_image for full-width images
twitter:image must be an absolute URL
- Use the Card Validator to test
LinkedIn
- Caches hard — use Post Inspector to refresh
- Respects
og: tags; ignores twitter: tags
- Image must be ≥1.91:1 aspect ratio
WhatsApp / Telegram
- Read OG tags on first share; cache can last hours
- Re-share after a few hours for the cache to clear naturally
Slack / Discord
- Both use OG tags; both cache
- Discord also supports
og:type = article for richer embeds
Debugging Social Previews
1. Check raw HTML for tags
curl -s https://www.yourdomain.com/blog/my-post | grep -i "og:\|twitter:"
If tags don't appear → they're being added by JavaScript (not crawlable). Fix: move to export const metadata or generateMetadata.
2. Validate with platform tools
3. Force cache refresh
After deploying fixes, paste the URL into each platform's debugger and click "Fetch new scrape information" (or equivalent).
Social Metadata Checklist
Limitations
- Cannot force immediate cache refresh on every social platform; some previews may remain stale after a correct fix.
- Requires publicly reachable deployed URLs for reliable validation with platform debuggers.
- Does not replace brand, accessibility, or legal review of image text, alt text, and preview copy.
1---2name: social-metadata-hardening3description: Fix social sharing previews so URLs render as rich cards on Facebook, LinkedIn, X/Twitter, WhatsApp, Telegram, and more. Covers OG tags, Twitter cards, absolute image URLs, and debugging.4---56# Social Metadata Hardening Skill78Fix social sharing so every important URL unfurls as a rich card across all platforms.910---1112## When to Use1314- Use when shared links show missing, stale, cropped, or incorrect previews on social and chat platforms.15- Use when auditing Open Graph, Twitter/X card, image URL, alt text, or `metadataBase` coverage in a web app.16- Use before launch when every public page needs predictable rich previews across LinkedIn, X, Facebook, WhatsApp, Slack, Discord, and Telegram.1718---1920## Why Previews Break2122| Problem | Root Cause |23|---------|-----------|24| No preview at all | Missing og:title, og:description, or og:image |25| Broken image | Relative URL (must be absolute) |26| Wrong image size | Image not 1200×630px (OG standard) |27| Plain text card | Twitter card type missing or set to `summary` |28| Stale preview | Platform caching old metadata |29| Metadata missing on crawl | Tags added by client-side JS (crawlers don't run JS) |3031---3233## The Gold Standard Metadata Block3435Every shareable page needs ALL of these in static HTML:3637```js38// Next.js App Router — lib/socialMetadata.js39export function buildSocialMetadata({40 title,41 description,42 path, // '/blog/my-post'43 image, // '/images/og/my-post.jpg' or full URL44 imageAlt,45 imageWidth = 1200,46 imageHeight = 630,47}) {48 const baseUrl = process.env.NEXT_PUBLIC_BASE_URL || 'https://www.yourdomain.com';49 50 // Always produce an absolute URL51 const imageUrl = image?.startsWith('http') ? image : `${baseUrl}${image}`;52 const pageUrl = `${baseUrl}${path}`;53 54 // Detect MIME type from extension55 const ext = imageUrl.split('.').pop().toLowerCase();56 const mimeMap = { jpg: 'image/jpeg', jpeg: 'image/jpeg', png: 'image/png', webp: 'image/webp' };57 const imageType = mimeMap[ext] || 'image/jpeg';5859 return {60 title,61 description,62 alternates: { canonical: pageUrl },63 openGraph: {64 title,65 description,66 url: pageUrl,67 type: 'website', // use 'article' for blog posts68 images: [{69 url: imageUrl,70 secureUrl: imageUrl, // explicit HTTPS version71 width: imageWidth,72 height: imageHeight,73 alt: imageAlt || title,74 type: imageType,75 }],76 },77 twitter: {78 card: 'summary_large_image', // NOT 'summary' — that shows a tiny image79 title,80 description,81 images: [imageUrl],82 },83 };84}85```8687---8889## Applying the Helper9091### Static page92```js93// app/about/page.js94import { buildSocialMetadata } from '@/lib/socialMetadata';9596export const metadata = buildSocialMetadata({97 title: 'About Us | My Site',98 description: 'Learn about our team and mission.',99 path: '/about',100 image: '/images/og/about.jpg',101 imageAlt: 'The My Site team',102});103```104105### Dynamic page (blog post, tool page)106```js107// app/blog/[slug]/page.js108import { buildSocialMetadata } from '@/lib/socialMetadata';109110export async function generateMetadata({ params }) {111 const post = await getPost(params.slug);112 return buildSocialMetadata({113 title: `${post.title} | My Blog`,114 description: post.excerpt,115 path: `/blog/${params.slug}`,116 image: post.ogImage || '/images/og/default.jpg',117 imageAlt: post.title,118 });119}120```121122### Homepage (app/layout.js or app/page.js)123```js124export const metadata = {125 metadataBase: new URL('https://www.yourdomain.com'), // REQUIRED for absolute URLs126 ...buildSocialMetadata({127 title: 'My Site — Tagline Here',128 description: 'Site-wide description.',129 path: '/',130 image: '/images/og/home.jpg',131 }),132};133```134135> âš ï¸ **Set `metadataBase` when using relative metadata URLs.** If your helper already outputs absolute canonical/OG URLs, previews can still work without it.136137---138139## OG Image Checklist140141Good OG images:142- **1200 × 630px** (2:1 ratio — works on all platforms)143- **Under 8MB** (Facebook limit)144- Served over **HTTPS**145- File name has **no spaces** (use hyphens)146- Format: **JPEG or PNG** (WebP works on most but not all crawlers)147- **Accessible via GET** with no authentication148149```bash150# Verify your OG image is reachable and correct size151curl -sI https://www.yourdomain.com/images/og/home.jpg | grep -i "content-type\|content-length\|status"152```153154---155156## Platform-Specific Notes157158### Facebook / Meta159- Caches aggressively — use the [Sharing Debugger](https://developers.facebook.com/tools/debug/) to force recrawl160- Minimum image: 200×200px (but use 1200×630 for quality)161- Needs: `og:title`, `og:description`, `og:image`, `og:url`162163### X / Twitter164- Use `twitter:card = summary_large_image` for full-width images165- `twitter:image` must be an absolute URL166- Use the [Card Validator](https://cards-dev.twitter.com/validator) to test167168### LinkedIn169- Caches hard — use [Post Inspector](https://www.linkedin.com/post-inspector/) to refresh170- Respects `og:` tags; ignores `twitter:` tags171- Image must be ≥1.91:1 aspect ratio172173### WhatsApp / Telegram174- Read OG tags on first share; cache can last hours175- Re-share after a few hours for the cache to clear naturally176177### Slack / Discord178- Both use OG tags; both cache179- Discord also supports `og:type = article` for richer embeds180181---182183## Debugging Social Previews184185### 1. Check raw HTML for tags186```bash187curl -s https://www.yourdomain.com/blog/my-post | grep -i "og:\|twitter:"188```189If tags don't appear → they're being added by JavaScript (not crawlable). Fix: move to `export const metadata` or `generateMetadata`.190191### 2. Validate with platform tools192193| Platform | Tool |194|----------|------|195| Facebook | https://developers.facebook.com/tools/debug/ |196| LinkedIn | https://www.linkedin.com/post-inspector/ |197| Twitter/X | https://cards-dev.twitter.com/validator |198| General | https://metatags.io |199200### 3. Force cache refresh201After deploying fixes, paste the URL into each platform's debugger and click "Fetch new scrape information" (or equivalent).202203---204205## Social Metadata Checklist206207- [ ] `metadataBase` set in root layout208- [ ] All shareable pages use shared `buildSocialMetadata` helper209- [ ] OG image URLs are absolute (start with `https://`)210- [ ] `secureUrl` set equal to `url` in OG image block211- [ ] Image is 1200×630px, under 8MB, HTTPS212- [ ] `twitter:card` is `summary_large_image` (not `summary`)213- [ ] Image alt text present214- [ ] Tags visible in raw HTML (not JavaScript-rendered)215- [ ] All platform debuggers show correct preview216- [ ] Cache refreshed on all platforms after deployment217218## Limitations219220- Cannot force immediate cache refresh on every social platform; some previews may remain stale after a correct fix.221- Requires publicly reachable deployed URLs for reliable validation with platform debuggers.222- Does not replace brand, accessibility, or legal review of image text, alt text, and preview copy.223