X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/0e87ae0739ed3e72301b7b718098f97a7f06a5d8..52c28b63e294283d557c9b26d3a2b267a2938a09:/apps/api/urls.py?ds=sidebyside diff --git a/apps/api/urls.py b/apps/api/urls.py index 8b1b9b0cb..c060322fd 100644 --- a/apps/api/urls.py +++ b/apps/api/urls.py @@ -1,17 +1,22 @@ # -*- coding: utf-8 -*- from django.conf.urls.defaults import * from piston.resource import Resource -from piston.authentication import HttpBasicAuthentication +from piston.authentication import OAuthAuthentication -from api.handlers import BookHandler +from api.handlers import BooksHandler -auth = HttpBasicAuthentication(realm='My sample API') -book_resource = Resource(handler=BookHandler, authentication=auth) +auth = OAuthAuthentication(realm="Wolne Lektury") +book_resource = Resource(handler=BooksHandler, authentication=auth) -urlpatterns = patterns('', +urlpatterns = patterns('', url(r'^books/(?P[^/]+)\.(?Pxml|json|yaml)$', book_resource), url(r'^books\.(?Pxml|json|yaml)$', book_resource), -) +) + patterns( + 'piston.authentication', + url(r'^oauth/request_token/$','oauth_request_token'), + url(r'^oauth/authorize/$','oauth_user_auth'), + url(r'^oauth/access_token/$','oauth_access_token'), +)