When you put a Web link in a Mastodon post, sometimes you get a nice little graphical preview, sometimes not. Before today, links to the blog you are now reading were, well, meh. Just a blank white box with the URL. So I put in the Open Graph Protocol prettification voodoo and the previews are nicer. Yay me.

Now, I know that most of you use modern publishing systems that do this flawlessly, but some of us write our own, like I did. (In 2002. In Perl. But I digress.) Anyhow, here’s a rundown on how, because I know I’m not the only self-authoring savage and also I still see lots of links from Fediverse posts that suffer from blank-white-box syndrome. Finally, there are examples and instructions online but they are imperfect, and you wouldn’t want me ignoring Internet imperfection, now would you?

Let’s start with a screenshot of the example from the Open Graph Protocol docs. (let’s say OG) (I’m not sure what OG is, or who cooked it up, but to whoever, thanks.)

Example from the Open Graph Protocol home page

In theory.

I’ve done standards work and have always been maniacal about specs having plenty of examples. Because I’m pretty sure most developers, like me, would much rather cut-and-paste-and-patch working code as opposed to having to, you know, understand the thing. I used to feel bad about my shallowness, but I’m over that now.

Tl;dr: It works. Here’s how.

Testing? · This puzzled me for a bit because I knew it probably wouldn’t Just Work First Time, and I didn’t want to inflict my fumbling on my followers.

So I made another account over on mastodon.online, HTMLified an early draft of this piece, pushed it unlinked to tbray.org, hand-edited the OG markup in, referenced it in a mastodon.online post, and when it didn’t work, fooled with markup, saved it under a different name, and reposted, as necessary. Where by “as necessary”, I mean 26 times. Since you asked.

Then I had to go edit the Perl code that generates this thing. Which has been accreting for 21 years and is not welcoming to casual visitors, of which I am definitely one these days.

Note: This is not a general guide to OG And How To Use It Properly. This is How To Get Nice Previews On Mastodon. Because of Hyrum’s Law, doing this is highly likely to work in future releases of Mastodon, and probably of other Fediverse software which, to get traction, needs to be approximately Mastodon-compatible. I bet that at some point this will work fine in Bluesky too.

One of the nice things about the Fediverse is that we’re seeing lots of interesting new clients. So if you’re going to do something like this, you should test in a few. I tested on the Web in Mastodon native and Phanpy and Elk.zone. On my Android I tried Masto and Fedilab and Tusky.

What I learned · In no particular order:

  1. That example says:
    <html prefix="og: https://ogp.me/ns#">
    Hmmm, they’re binding a prefix to a URI. Gosh, that looks like an XML namespace, which today’s Web hipsters would be way too cool to use, so someone re-invented a new syntax to do the same thing. Since this blog is one of the world’s last remaining outposts of XHTML (I regret nothing) I tried xmlns:og=https://ogp.me/ns# and it worked fine, just like we used to do in the Old Country. Haha, when I opened up the blogging source code, the prefix was already declared, albeit covered with a thick layer of dust.

    (*sigh*) Further investigation suggests that the og: prefix is hardwired into a lot of code, so you could skip both the HTML and XML prefix declarations and it would probably still work. But That Would Be Wrong.

  2. Speaking of which, they want the og prefix mapped to https://ogp.me/ns#, but https://opengraphprotocol.org/schema/ works too. I wonder if this is written down anywhere?

  3. They give the full absolute image address in the og:image field, but you can use a relative URI reference too, if you store your media close to your post.

  4. They’re wrong about what the minimal set of OG fields is. My experiments convinced me that what you need are og:site_name, og:title, og:image (if you have one), and og:type.

So here’s what my new old-school output looks like:

Open Graph markup in the ongoing blog file header

In practice.

Default graphic for Open Graph og:image

Image considerations · I had to fiddle with my publishing system to add a way to distinguish a picture to be used in preview, and to substitute a default image (shown here) when there wasn’t anything distinguished. I think this is necessary.

You have to watch out for aspect ratios. Mastodon Web is pretty brutal about resizing whatever you provide in og:image to a shape that seems to change but is in the 1:1 to 4:3 range.

Oops · After I wrote this, I ran across Mastodon and Open Graph, by Dr. Drang, which has most of the same information, published two months ago. But doesn’t try to be amusing, so I’ll publish anyhow.

Have fun. Death to blank-white-square Fediverse links!



Contributions

Comment feed for ongoing:Comments feed

From: Rick Levine (May 09 2023, at 12:17)

+1 for amusing. Thanks for making me chuckle!

[link]

From: Carl (May 09 2023, at 13:37)

Tim, while you were highfaluting it up at Amazon, some of us were down in the web dev coal mines, making content that displays correctly on Facebook right up until the pivot to video crushed our souls. 😂

OpenGraph is how FaceBook displays rich previews. The namespaces don't matter. I'm sure it's just looking for the hard coded letters "og:image". A lot of other systems use OG images too (Slack, Apple Messages, etc.), although weirdly not Twitter which has its own bespoke social card tags.

Google uses JSON-LD / schema.org for its rich snippets, which is pretty similar in spirit to OG, but yet another way of marking up the same information for microbrowsers. ("Microbrowser" is jargon for the various spiders that generate preview images.) I'm glad Mastodon is using one that exists off the shelf instead of making up their own fourth set of SEO tags.

[link]

From: Andrew Reilly (May 09 2023, at 18:28)

Thanks for this post! I'd been wondering how those super-annoying "preview" thumbnails worked, or failed to. I don't mastodon, twitter or facebook, but I've noticed that both AppleMail and Microsoft Teams do similar URL decoration. Probably similar mechanism? Nice to read that there are multiple competing mechanisms.

I did a bit of additional reading, to see if my not-even-slightly home written blog machine (the big one) could do it, and apparently yes, but not natively, only through a plugin. The plugin authors credit FaceBook with having originated it (which didn't surprise me, as they seem big on "graph" stuff). They also mention that the "og:" namespace prefix has been registered with the appropriate registry of such things, which is why you saw that it's available by default, without having to rope in the namespace definition. (https://wordpress.org/plugins/opengraph/#how%20to%20enable%2Fdisable%20%22strict%20mode%22)

[link]

From: Patrick Gibson (May 10 2023, at 13:12)

I sure wish OpenGraph had a means to specify multiple images along with image ratios so you had control over what gets displayed depending on the need of the placement. Reminds me of when Disney+ released The Simpsons in 16:9 by cropping the original 4:3. This resulted in much outrage amongst fan especially because gags were lost. It’s also disrespectful to the original artists whose work was only partially shown.

[link]

From: Maya (May 14 2023, at 08:54)

> My experiments convinced me that what you need are og:site_name, og:title, og:image (if you have one), and og:type.

May I ask that you change this advice to people? The reason why this "works" is because platform implementations often fill in a missing og:url with any rel=canonical URL present, (Mastodon's: https://github.com/mastodon/mastodon/blob/main/app/lib/link_details_extractor.rb#L167). But web publishers not having the spec-required og:url breaks libraries/tooling that try to take on the reasonably-scoped task of implementing the spec. (example: https://github.com/ysk24ok/jekyll-linkpreview) Turning a useful and reasonably-specced open protocol into a "guess-and-check based on major platform behavior" pattern is, in my opinion, a loss.

[link]

From: PJ (May 23 2023, at 06:12)

FWIW, I think the real last remaining outpost of XHTML is ebooks; EPUBs to be precise. TIL, so it came to mind when you mentioned your site :)

[link]

author · Dad
colophon · rights

May 08, 2023
· Technology (90 fragments)
· · Publishing (160 more)

By .

The opinions expressed here
are my own, and no other party
necessarily agrees with them.

A full disclosure of my
professional interests is
on the author page.

I’m on Mastodon!