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
Massimiliano Pippi
April 10, 2015
Programming
0
170
Protect a Django REST api with Oauth2
Lightning talk for pycon15
Massimiliano Pippi
April 10, 2015
Tweet
Share
More Decks by Massimiliano Pippi
See All by Massimiliano Pippi
Finding the needle: a deep dive into the rewriting of Haystack
masci
0
74
Project layout patterns in Go
masci
1
490
A Python and a Gopher walk into a bar - Embedding Python in Go. (dotGo2017)
masci
0
740
A Python and a Gopher walk into a bar - Embedding Python in Go.
masci
0
250
How to port your Python software to Go without people noticing
masci
0
200
Python - Go One Way
masci
0
170
How we stopped using the mouse and started drawing molecules with our fingertips: not the usual porting story
masci
0
93
Django 1.7 on App Engine
masci
0
190
If code is poetry, then documentation is prose
masci
0
110
Other Decks in Programming
See All in Programming
PHPでお金を扱う時、終わりのない 謎の1円調査の旅にでなくて済む方法
nakka
3
1.3k
Return of the Full-Stack Developer
simas
PRO
1
320
PHPUnit 高速化テクニック / PHPUnit Speedup Techniques
pinkumohikan
1
1.2k
RCPと宣言型ポリシーについてのお話し
kokitamura
2
150
複雑なフォームと複雑な状態管理にどう向き合うか / #newt_techtalk vol. 15
izumin5210
4
3.4k
私の愛したLaravel 〜レールを超えたその先へ〜
kentaroutakeda
12
3.6k
Windows版PHPのビルド手順とPHP 8.4における変更点
matsuo_atsushi
0
370
Coding Experience Cpp vs Csharp - meetup app osaka@9
harukasao
0
120
マルチアカウント環境での、そこまでがんばらない RI/SP 運用設計
wa6sn
0
610
Let's Take a Peek at PHP Parser 5.x!
inouehi
0
100
英語 × の私が、生成AIの力を借りて、OSSに初コントリビュートした話
personabb
0
110
ニックトレイン登壇資料
ryotakurokawa
0
140
Featured
See All Featured
Mobile First: as difficult as doing things right
swwweet
223
9.5k
Understanding Cognitive Biases in Performance Measurement
bluesmoon
28
1.6k
Music & Morning Musume
bryan
46
6.4k
Rails Girls Zürich Keynote
gr2m
94
13k
Producing Creativity
orderedlist
PRO
344
40k
A better future with KSS
kneath
238
17k
Testing 201, or: Great Expectations
jmmastey
42
7.4k
Building a Modern Day E-commerce SEO Strategy
aleyda
39
7.2k
Rebuilding a faster, lazier Slack
samanthasiow
80
8.9k
Scaling GitHub
holman
459
140k
個人開発の失敗を避けるイケてる考え方 / tips for indie hackers
panda_program
102
18k
Improving Core Web Vitals using Speculation Rules API
sergeychernyshev
12
610
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