Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Protect a Django REST api with Oauth2
Search
Sponsored
·
SiteGround - Reliable hosting with speed, security, and support you can count on.
→
Massimiliano Pippi
April 10, 2015
Programming
210
0
Share
Embed
Copy iframe code
Copy JS code
Copy link
Start on current slide
Protect a Django REST api with Oauth2
Lightning talk for pycon15
Massimiliano Pippi
April 10, 2015
More Decks by Massimiliano Pippi
See All by Massimiliano Pippi
Finding the needle: a deep dive into the rewriting of Haystack
masci
0
150
Project layout patterns in Go
masci
1
560
A Python and a Gopher walk into a bar - Embedding Python in Go. (dotGo2017)
masci
0
860
A Python and a Gopher walk into a bar - Embedding Python in Go.
masci
0
370
How to port your Python software to Go without people noticing
masci
0
270
Python - Go One Way
masci
0
250
How we stopped using the mouse and started drawing molecules with our fingertips: not the usual porting story
masci
0
150
Django 1.7 on App Engine
masci
0
250
If code is poetry, then documentation is prose
masci
0
210
Other Decks in Programming
See All in Programming
What's New in Android 2026
veronikapj
0
260
生成AI導入の「期待外れ」を乗り越える ー 開発フロー改革が目指す、真の組織変革
starfish719
0
4.3k
Apache Hive: そしてCloud Native Lakehouseへ
okumin
1
220
GDG Korea Android: 2026 I/O Extended ~ What's new in Android development tools
pluu
0
220
関東Kaggler会_NVIDIA_Nemotron_コンペ_振り返り
rick_ds
0
560
Terraform標準の組織で AWS CDKをどう使うか
mu7889yoon
1
510
いまどきの Codex で開発する visionOS アプリの開発スタイルについて
karad
0
140
夏だ!祭りだ!祭りとはドメインモデリングでは?
ryugen04
0
260
Jindong: Introducing Declarative Haptics in Compose Multiplatform
l2hyunwoo
0
110
源内ハンズオン概要編
hideg
0
170
20260722_microCMSで考える、AI時代のコンテンツ運用設計
yosh1
0
400
属人化した知識を、 AIが辿れる地図にする
pkshadeck
PRO
1
170
Featured
See All Featured
職位にかかわらず全員がリーダーシップを発揮するチーム作り / Building a team where everyone can demonstrate leadership regardless of position
madoxten
64
56k
Agile Leadership in an Agile Organization
kimpetersen
PRO
0
200
A Guide to Academic Writing Using Generative AI - A Workshop
ks91
PRO
1
370
A Tale of Four Properties
chriscoyier
163
24k
Rails Girls Zürich Keynote
gr2m
96
14k
Measuring Dark Social's Impact On Conversion and Attribution
stephenakadiri
2
250
How to Create Impact in a Changing Tech Landscape [PerfNow 2023]
tammyeverts
56
3.4k
Conquering PDFs: document understanding beyond plain text
inesmontani
PRO
4
3k
Bash Introduction
62gerente
615
220k
The Curse of the Amulet
leimatthew05
2
14k
Code Review Best Practice
trishagee
74
20k
Game over? The fight for quality and originality in the time of robots
wayneb77
1
240
Transcript
Protect a Django REST API with OAuth2 Massimiliano Pippi @maxpippi
Introducing my friend Harold Let’s say we want to write
a timetracking web application y u not pushing? git push -f works lol
Backend recipe Django & Django REST Framework u can use
the new DRF3 generic views here wut?
Projects proliferation timetracker-backend timetracker-web timetracker-[android|ios] timetracker-desktop yep! I need an
app for my nokia 3210
How do we do access control? Third party apps want
to access our data as well! not ma problem can’t hear u
Common problems • Using user credentials inside the app is
a bad idea • The app might have full access to user account • User has to change his password to revoke the access
Multiple problems - one Solution The OAuth2 framework omg not
oauth again
Django OAuth Toolkit • Django 1.4 → 1.7 (1.8 coming
soon) • Python 2&3 • built on top of oauthlib, RFC 6749 compliant • DRF 2&3 integration https://github.com/evonove/django-oauth-toolkit
Batteries included • builtin views to register and manage OAuth2
applications • form view for user authorization lol I found what DRF stands for omg harold plz retire
Endpoints protection for the lazy • function views decorators @protected_resource()
def my_view(request): # A valid token is required to get here… • generic class based views class ApiEndpoint(ProtectedResourceView): def get(self, request, *args, **kwargs): return HttpResponse('Hello, OAuth2!')
DRF ootb integration REST_FRAMEWORK = { 'DEFAULT_AUTHENTICATION_CLASSES': ( 'oauth2_provider.ext.rest_framework.OAuth2Authentication', )
}
Future plans - Help needed! OAuth1 support Resource and Authorization
server components separation https://github.com/evonove/django-oauth-toolkit +1 for my own PR