Home >  Archive >  2011 >  December >  16

Previous / Next

First look at oEmbed
By Dave Winer on Friday, December 16, 2011 at 6:11 PM.

I'm pretty sure that Twitter is using oEmbed to connect with other services. #

http://oembed.com/ #

I took a look, and it's pretty easy to use, but it's also pretty limited and unnecessarily expensive to operate, imho. #

Consider the problem. I've got the URL of a document. I'm looking for the content its displaying.  #

This is what Twitter does when it wants to display a Flickr picture. It makes a query to a service at Twitter, passing it the URL of the page containing the picture. Flickr returns a bundle of info, in JSON or XML. Twitter parses the info, extracts a link to the picture and its height and width and generates an HTML <img> element. #

Discovery works more or less the same way it does for RSS. Read the HTML source of the picture, and look for a link element in the head with type equal to application/json+oembed and rel equal to alternate and an href attribute pointing to the JSON or XML struct. It's all there in the oEmbed spec, no need to reproduce it here. #

However, it doesn't appear that Flickr is supporting this discovery protocol in their HTML source. There are no link elements with that structure in the head section of this page.  #

There's a lot of stuff about discovery in the beginning of the document, and it's quite dense, and I don't see why it's there at all. Why not just use the <link> form of discovery. It's rational, there's ample prior art (it's how RSS feeds are discovered), and it's a lot simpler.  #

Further, why not just include the info you would get back from the query in the HTML source. It's one more web service to keep running. This really is static content that only has to be regenerated when the content changes. That's usually pretty infrequent.  #

Of course, I'm probably missing something. That's why I write these blog posts, to share what I've learned and to learn more, quickly. #




This site contributes to the scripting.com community river.


© Copyright 1997-2011 Dave Winer. Last update: Friday, December 16, 2011 at 8:03 PM Eastern. Last build: 12/31/2011; 10:02:05 AM. "It's even worse than it appears."

RSS feed for Scripting News

Previous / Next