35
oEmbed by Michael Nordmeyer (@mnordmeyer) for BarCamp London 7

oEmbed BarCamp London 7

Embed Size (px)

Citation preview

Page 1: oEmbed BarCamp London 7

oEmbedby Michael Nordmeyer (@mnordmeyer)

for BarCamp London 7

Page 2: oEmbed BarCamp London 7

What is oEmbed?

Page 3: oEmbed BarCamp London 7

Why oEmbed?

Page 4: oEmbed BarCamp London 7

Compare This…

http://www.youtube.com/watch?v=rKuIg_3OmAI

Page 5: oEmbed BarCamp London 7

To This…

<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/rKuIg_3OmAI&hl=en&fs=1&"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/rKuIg_3OmAI&hl=en&fs=1&" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object>

Page 6: oEmbed BarCamp London 7

Is it Complicated?

Page 7: oEmbed BarCamp London 7

Request

http://www.flickr.com/services/oembed/?url=http%3A//www.flickr.com/photos/coffeemick/3393401816/

Page 8: oEmbed BarCamp London 7

Response (JSON)

{ "version": "1.0", "type": "photo", "title": "Session Board Saturday", "author_name": "coffeemick", "author_url": "http:\/\/www.flickr.com\/photos\/coffeemick\/", "cache_age": 3600, "provider_name": "Flickr", "provider_url": "http:\/\/www.flickr.com\/", "width": "500", "height": "375", "url": "http:\/\/farm4.static.flickr.com\/3421\/3393401816_7166959b90.jpg"}

Page 9: oEmbed BarCamp London 7

Response (XML)<?xml version="1.0" encoding="utf-8" standalone="yes"?><oembed>

<version>1.0</version><type>photo</type><title>Session Board Saturday</title><author_name>coffeemick</author_name><author_url>http://www.flickr.com/photos/coffeemick/</author_url><cache_age>3600</cache_age><provider_name>Flickr</provider_name><provider_url>http://www.flickr.com/</provider_url><width>500</width><height>375</height><url>http://farm4.static.flickr.com/3421/3393401816_7166959b90.jpg</url>

</oembed>

Page 10: oEmbed BarCamp London 7

Response (JSON){ "provider_url": "http://www.youtube.com/", "title": "Waiting for Barcamp London 6 to open doors", "html": "<object width=\"425\" height=\"344\"><param name=\"movie\" value=\"http://www.youtube.com/v/rKuIg_3OmAI&fs=1\"></param><param name=\"allowFullScreen\" value=\"true\"></param><param name=\"allowscriptaccess\" value=\"always\"></param><embed src=\"http://www.youtube.com/v/rKuIg_3OmAI&fs=1\" type=\"application/x-shockwave-flash\" width=\"425\" height=\"344\" allowscriptaccess=\"always\" allowfullscreen=\"true\"></embed></object>", "author_name": "13stock", "height": 344, "width": 425, "version": "1.0", "author_url": "http://www.youtube.com/user/13stock", "provider_name": "YouTube", "type": "video"}

Page 11: oEmbed BarCamp London 7

Consumers & Providers

Page 12: oEmbed BarCamp London 7

Consumers

✓ WordPress 2.9-rare

✓ 280 Slides

✓ Dumble (creating a tumblelog from a user's delicious links)

✓ You

Page 13: oEmbed BarCamp London 7

Providers

✓ Flickr

✓ Youtube

✓ Vimeo

✓ Viddler

✓ Hulu

✓ Revision3

✓ Qik

✓ Clearspring Widgets

✓ oohEmbed (28 Sites)

✓ …

Page 14: oEmbed BarCamp London 7

What Does the Consumer

Has to Do?

Page 15: oEmbed BarCamp London 7

Consumer

•Internal Handler

Page 16: oEmbed BarCamp London 7

Consumer

•Internal Handler

•Known API Provider

Page 17: oEmbed BarCamp London 7

Consumer

•Internal Handler

•Known API Provider

•oEmbed discovery <link> tag in the <head>

Page 18: oEmbed BarCamp London 7

What Does the Provider

Has to Do?

Page 19: oEmbed BarCamp London 7

Provider

• URL scheme: http://www.flickr.com/photos/*

Page 20: oEmbed BarCamp London 7

Provider

• URL scheme: http://www.flickr.com/photos/*

• API XML endpoint: http://www.flickr.com/services/oembed.xml

Page 21: oEmbed BarCamp London 7

Provider

• URL scheme: http://www.flickr.com/photos/*

• API XML endpoint: http://www.flickr.com/services/oembed.xml

• API JSON endpoint: http://www.flickr.com/services/oembed.json

Page 22: oEmbed BarCamp London 7

Discovery

Page 23: oEmbed BarCamp London 7

Discovery

<link rel="alternate" type="application/json+oembed" href="http://www.youtube.com/oembed?url=http%3A//www.youtube.com/watch?v%3DrKuIg_3OmAI&format=json" title="Waiting for Barcamp London 6 to open doors" />

<link rel="alternate" type="text/xml+oembed" href="http://www.youtube.com/oembed?url=http%3A//www.youtube.com/watch?v%3DrKuIg_3OmAI&format=xml" title="Waiting for Barcamp London 6 to open doors" />

Page 24: oEmbed BarCamp London 7

Content Types

Page 25: oEmbed BarCamp London 7

Content Types

•Photo

•Video

•Link

•Rich

Page 26: oEmbed BarCamp London 7

WordPress

Page 27: oEmbed BarCamp London 7

Plain Text URL

http://www.youtube.com/watch?v=rKuIg_3OmAI

Page 28: oEmbed BarCamp London 7

Shortcode

[youtube=http://www.youtube.com/watch?v=rKuIg_3OmAI]

Page 29: oEmbed BarCamp London 7

Shortcode

[youtube=http://www.youtube.com/watch?v=rKuIg_3OmAI&w=480&h=360&fmt=18]

Page 30: oEmbed BarCamp London 7

YouTube Settings

Page 31: oEmbed BarCamp London 7

Where in WordPress?

Page 32: oEmbed BarCamp London 7

“Settings » Media » Embeds”

Page 33: oEmbed BarCamp London 7

Libraries

•Perl

• PHP

•Python

•Ruby

Page 34: oEmbed BarCamp London 7

Links

•https://speakerdeck.com/michaelnordmeyer

•https://michaelnordmeyer.com/

•https://twitter.com/mnordmeyer

•http://oembed.com/

Page 35: oEmbed BarCamp London 7

Thanks