Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Sign up for free
Menu
Search
Features
All features
Private URLs
Password Protection
Custom URLS
Scheduled publishing
Remove Branding
Restrict embedding
Deck Collections
Notes
Features
All features
Private URLs
Password Protection
Custom URLS
Scheduled publishing
Remove Branding
Restrict embedding
Deck Collections
Notes
Explore
Featured decks
Featured speakers
Programming
Technology
Storyboards
Explore
Featured decks
Featured speakers
Programming
Technology
Storyboards
Pricing
Search
Sign in
Sign up for free
Introduction to OAuth
Search
Sponsored
·
SiteGround - Reliable hosting with speed, security, and support you can count on.
→
Alex Bilbie
May 30, 2012
Technology
2.2k
6
Share
Embed
Copy iframe code
Copy JS code
Copy link
Start on current slide
Introduction to OAuth
Delivered at the Eduserv Federated Access Management conference 2011 on 9th November 2011
Alex Bilbie
May 30, 2012
More Decks by Alex Bilbie
See All by Alex Bilbie
12 Factor Laravel Apps
alexbilbie
1
630
The Joy of Open Data
alexbilbie
0
200
API Driven Development
alexbilbie
8
5.1k
Linkey Project
alexbilbie
0
1.7k
Linking You
alexbilbie
2
820
Introduction to HTML5 and CSS3
alexbilbie
3
1.6k
The @lncd toolchain
alexbilbie
2
1.5k
Introduction to MongoDB
alexbilbie
2
380
Other Decks in Technology
See All in Technology
生成AIエージェントを用いた、 手動テスト手順書から自動テストへの 変換手法の検討
magicpod
0
150
AI時代の「技術的負債」の変質ー概念の終焉と再解釈、エージェントと共に向かう先
nwiizo
0
2k
新機種発売前に見直そう!端末移行で再ログインが要るアプリ・要らないアプリは何が違うのか 〜シームレスに再開できる設計と実装〜
zozotech
PRO
0
170
SQL文一行も書けない人事がCortexもろもろを使って人事業務を楽にしてみる
ponponmikankan
1
240
顧客に向き合う開発組織へ。リアーキテクチャとフィーチャーチーム化で挑む組織改革
safie
0
1.4k
20260912_スクフェス三河
kgnkhkr
0
360
Screen Lens - 今見てる画面を翻訳する
komagata
0
290
安心して変更できるWebフロントエンドの作り方
pirosikick
4
2.2k
What the customer really needed
kawaguti
PRO
1
140
Snowflakeで実現する全社横断の顧客の声(VOC)分析・活用基盤@Snowflake World Tour Tokyo 2026
yuto16
0
210
俺の仕事は AIに奪われないし、たぶんその BIも要らない
hikaruri
0
450
Snowflakeのコスト最適化を支えるアーキテクチャ設計
ktatsuya
1
1.6k
Featured
See All Featured
ラッコキーワード サービス紹介資料
rakko
1
4.9M
The SEO identity crisis: Don't let AI make you average
varn
0
560
From π to Pie charts
rasagy
0
370
Designing Powerful Visuals for Engaging Learning
tmiket
1
540
AI: The stuff that nobody shows you
jnunemaker
PRO
9
1k
Principles of Awesome APIs and How to Build Them.
keavy
128
18k
Unlocking the hidden potential of vector embeddings in international SEO
frankvandijk
0
930
A Soul's Torment
seathinner
7
3.6k
Build The Right Thing And Hit Your Dates
maggiecrowley
39
3.4k
Lightning talk: Run Django tests with GitHub Actions
sabderemane
0
250
Designing Experiences People Love
moore
143
24k
Highjacked: Video Game Concept Design
rkendrick25
PRO
1
460
Transcript
Wednesday, 30 May 12
Alex Bilbie University of Lincoln @alexbilbie Wednesday, 30 May 12
Story time! Wednesday, 30 May 12
I’m a user of a web service Wednesday, 30 May
12
I own resources on the web service Wednesday, 30 May
12
For example, personal details Wednesday, 30 May 12
Wednesday, 30 May 12
These resources1 are stored on a resource server 2 1.
personal details 2. facebook.com Wednesday, 30 May 12
The resource server exposes user resources over an API Wednesday,
30 May 12
I visit a 3rd party web application Wednesday, 30 May
12
The 3rd party web app is called a client Wednesday,
30 May 12
The client1 wants to use my resources2 1. 3rd party
web app 2. personal details Wednesday, 30 May 12
But the resource server’s API requires user authorisation Wednesday, 30
May 12
How? Wednesday, 30 May 12
Give the client my password Wednesday, 30 May 12
Give the client my password Wednesday, 30 May 12
So what then? Wednesday, 30 May 12
OAuth Wednesday, 30 May 12
“An open protocol to allow secure API authorisation in a
simple and standard method from desktop and web applications.” oauth.net Wednesday, 30 May 12
—˛ Wednesday, 30 May 12
User Client Resources Owns Accesses OWNS OWNS S Authorises Wednesday,
30 May 12
The flow Wednesday, 30 May 12
User clicks “sign in” in the client application Wednesday, 30
May 12
Wednesday, 30 May 12
The user is redirected to the resource server and asked
to sign in Wednesday, 30 May 12
Wednesday, 30 May 12
GET /authorise? response_type=code&client_id=12345&redirect_uri= http://client.tld/ redirect&scope=name,email,birthday HTTP/1.1 Host: resource-server.tld Wednesday, 30
May 12
The resource server clearly tells the user the specific data
the client wants to access Wednesday, 30 May 12
Wednesday, 30 May 12
User authorises the application and is redirected back to client
with a authorisation code in the query string Wednesday, 30 May 12
HTTP/1.1 302 Found Location: http://client.tld/redirect?code=78dsf9sudfo9s Wednesday, 30 May 12
Client exchanges the authorisation code for an access token Wednesday,
30 May 12
POST /token HTTP/1.1 Host: resource-server.tld Content-type: application/x-www-form-urlencoded code=78dsf9sudfo9s&client_id=12345&client_secret =12345&redirect_uri=http://client.tld/redirect Wednesday,
30 May 12
HTTP/1.1 200 OK Content-type: application/json { access_token: “aLKJHskjhda8s13jsi9sis”, valid_until: 1320759526
} Wednesday, 30 May 12
The access token can then be used as authorisation by
the client to access the specified resources for a specific length of time Wednesday, 30 May 12
Advantages Wednesday, 30 May 12
No password sharing <- Happy security conscious user Wednesday, 30
May 12
Developers just need to implement a redirect and a POST
request <- Happy developers Wednesday, 30 May 12
Users can revoke access tokens for specific clients Wednesday, 30
May 12
Wednesday, 30 May 12
Nefarious clients can have their credentials revoked and all associated
access tokens destroyed immediately Wednesday, 30 May 12
Wednesday, 30 May 12
Wednesday, 30 May 12
Currently version 1.0a lncn.eu/giy Wednesday, 30 May 12
Version 2.0 is almost finished lncn.eu/bkw Wednesday, 30 May 12
OAuth 2.0 •Simpler •Requires all communication over SSL •New flows
•Better UX Wednesday, 30 May 12
Who’s using OAuth? Wednesday, 30 May 12
Wednesday, 30 May 12
v1.0a and v2.0 v1.0a v1.0a v2.0 (prev v1.0a) v2.0 v2.0
(prev v1.0a) v2.0 (prev v1.0a) v2.0 Wednesday, 30 May 12
And in HE? Wednesday, 30 May 12
Wednesday, 30 May 12
Wednesday, 30 May 12
Wednesday, 30 May 12
data.lincoln.ac.uk people energy location printing events calendars bibliographic documents Wednesday,
30 May 12
Internal and external authorisation Wednesday, 30 May 12
Single Sign-On Wednesday, 30 May 12
Blackboard (SAML) Zendesk (SAML) Get Satisfaction (OAuth) WordPress (OAuth) Exchange
(ADFS) Sharepoint (ADFS) Gmail (SAML) + OAuth clients (internal + external) Wednesday, 30 May 12
Open source 2.0 server lncn.eu/ar6 Wednesday, 30 May 12
Any questions? Wednesday, 30 May 12
Thank you @alexbilbie Wednesday, 30 May 12