From the oEmbed site:
oEmbed is a format for allowing an embedded representation of a URL on third party sites. The simple API allows a website to display embedded content (such as photos or videos) when a user posts a link to that resource, without having to parse the resource directly.
This would be great for third party sites to embed questions. Here's how it could work:
StackOverflow creates an oEmbed endpoint that takes a url-encoded URL as a parameter. Any site that wants to embed a URL will call it like this:
Format:
http://stackoverflow.com/oembed.{format}?url={url}
Example:
http://stackoverflow.com/oembed.json?url=http%3A%2F%2Fstackoverflow.com%2Fquestions%2F2193953%2Fflash-cs4-refuses-to-let-go
It would then reply with a representation of that URL that can be embedded nicely:
{
"version": "1.0",
"type": "link",
"width": 300,
"height": 100,
"title": "Flash CS4 refuses to let go",
"url": "http://stackoverflow.com/questions/2193953/flash-cs4-refuses-to-let-go",
"author_name": "Ender",
"author_url": "http://stackoverflow.com/users/134658/ender",
"provider_name": "Stack Overflow",
"provider_url": "http://stackoverflow.com/"
"html": "<html code that will display the question / answer embedded will be here>"
}
Additionally, it could be adjusted to return rich html, which would be nice if we wanted to include the score, or the user's avatar or something. That can be done with a type of 'rich'.
The oEmbed should also be discoverable, by adding a link tag to the document:
<link rel="alternate" type="application/json+oembed" href="stackoverflow.com/oembed.json?url=http%3A%2F%2Fstackoverflow.com%2Fquestions%2F2193953%2Fflash-cs4-refuses-to-let-go" title="Flash CS4 Refuses to Let Go" />
There are quite a few sites that already support oEmbed with great success such as YouTube, Flickr, Vimeo, Slideshare and WordPress. Here's an example of an oEmbed response from YouTube (that is easily taken from their autodiscovery tag.)