Tested tool guide
Tested browser tools
Checked August 16, 2026
What Open Graph Tag Generator does, with a checked example
Fill in a page title, description, image URL and canonical address, and this tool returns the <meta> tags that social platforms read when your link is shared. Each value becomes a property/content pair following the Open Graph protocol, with Twitter card equivalents alongside. The thing most people get wrong: og:image must be an absolute URL the platform's crawler can fetch publicly - a relative path or a localhost URL silently produces a share with no picture. And because every major platform caches scraped pages, corrections never appear the moment you save them.
Worked example
A concrete input and expected output from the current implementation.
Input
Page URL: https://bee2.io/pricing/
Site name: Bee2
Title: Bee2 Pricing
Description: Simple cloud backup for small teams. From $5 per month.
Image: https://bee2.io/img/og-pricing.jpg
->
Expected output
<meta property="og:title" content="Bee2 Pricing">
<meta property="og:type" content="website">
<meta property="og:url" content="https://bee2.io/pricing/">
<meta property="og:image" content="https://bee2.io/img/og-pricing.jpg">
<meta property="og:description" content="Simple cloud backup for small teams. From $5 per month.">
<meta property="og:site_name" content="Bee2">
Each field maps one-to-one onto a property/content pair, so the tags mirror exactly what you entered. og:type defaults to "website" when left blank, and og:url fixes the canonical address that platforms use as the permanent ID of the object, so shares from any page path collapse into one.