Zoom Link Preview Not Working? Why Chat Previews Fail

Zoom chat link previews missing or broken? Learn why Zoom shows limited link cards and how to ensure your OG tags are correctly set for maximum preview compatibility.

Does Zoom support link previews?

Zoom Team Chat (formerly Zoom Chat) generates link preview cards when you paste a URL. However, Zoom's link preview support is more limited than Slack or Discord. Zoom renders a compact card showing the page title and sometimes a description, but image rendering can be inconsistent depending on your Zoom version and account settings.

Zoom reads standard Open Graph tags. If your OG tags are missing or malformed, Zoom will show only the raw URL or a minimal title-only card.

Reason 1: Missing OG tags

The most common cause is simply missing meta tags. Zoom needs at minimum:

<meta property="og:title" content="Your Page Title" />
<meta property="og:description" content="Your page description." />
<meta property="og:image" content="https://example.com/og.jpg" />
<meta property="og:url" content="https://example.com/page" />

Verify these are present in your page's HTML source (not injected by JavaScript) by viewing source in your browser or using a tool like OGFixer.

Reason 2: JavaScript-only meta tags

If your site is a single-page application (React, Vue, Angular) that injects meta tags via JavaScript, Zoom's scraper may not execute JavaScript. The scraper reads the raw HTML response, so tags need to be server-rendered.

Fix: use server-side rendering (Next.js, Nuxt, SvelteKit) or static site generation so OG tags are present in the initial HTML.

Reason 3: URL not using HTTPS

Zoom only fetches previews for HTTPS URLs. HTTP links will not generate link cards. Ensure your site has a valid SSL certificate and redirects HTTP to HTTPS.

Reason 4: Zoom admin settings

In corporate Zoom accounts, admins can disable link previews for security or compliance reasons. Check with your Zoom admin:

  1. Go to the Zoom Admin Portal
  2. Navigate to Account Settings → Chat Settings
  3. Check whether "Show link previews" is enabled

Individual users can also toggle link previews in their Zoom client settings under Chat → Show link previews.

Reason 5: Zoom's limited image support

Unlike Slack and Discord, Zoom's link cards often show only text (title + description) without displaying the og:image. This is a Zoom client limitation, not a problem with your OG tags. The image may appear in some Zoom versions and not others.

Focus on ensuring your og:title and og:description are compelling, since these are the most consistently rendered elements in Zoom link previews.

Zoom link preview best practices

  • Write a clear og:title: keep it under 60 characters so it doesn't get truncated in Zoom's compact card format.
  • Write a concise og:description: aim for 1-2 sentences that explain what the link contains.
  • Always include og:image: even if Zoom doesn't always show it, including a quality OG image ensures compatibility with other platforms when the same link is shared elsewhere.
  • Use server-rendered HTML: avoid client-side-only meta tag injection.

Preview your OG tags free at OGFixer.com → Paste your URL into OGFixer to verify your OG tags are correctly set and see how they render on Slack, Discord, Twitter, and more.

← All guides