from django.conf.urls import url, include
from django.views.decorators.csrf import csrf_exempt
from django.views.generic import TemplateView
-from piston.authentication import oauth_access_token
import catalogue.views
from api import handlers
from api.piston_patch import oauth_user_auth
urlpatterns = [
url(r'^oauth/request_token/$', views.OAuth1RequestTokenView.as_view()),
url(r'^oauth/authorize/$', oauth_user_auth, name='oauth_user_auth'),
- url(r'^oauth/access_token/$', csrf_exempt(oauth_access_token)),
+ url(r'^oauth/access_token/$', csrf_exempt(views.OAuth1AccessTokenView.as_view())),
url(r'^$', TemplateView.as_view(template_name='api/main.html'), name='api'),