Django-rest-framework 与 django OAuth 2.0 提供身份验证错误

Django-rest-framework with django OAuth 2.0 giving authentication error

我已经将 django-rest-framework 与 django-oauth-toolkit 集成在一起。它给了我 {"detail": "Authentication credentials were not provided."} 未验证的 api。

这是我的 settings.py

REST_FRAMEWORK = {
    'DEFAULT_AUTHENTICATION_CLASSES': (
        'oauth2_provider.contrib.rest_framework.OAuth2Authentication',
    ),
    'DEFAULT_PERMISSION_CLASSES': (
        'rest_framework.permissions.IsAuthenticated',
    )
}

views.py

from rest_framework.views import APIView
from rest_framework.response import Response


class SignUpView(APIView):
    """
        Signup for the user.
    """
    def get(self, request):
        return Response({'result': True, 'message': 'User registered successfully.'})

urls.py

from django.urls import path
from myapp.views import SignUpView

urlpatterns = [
    path('signup/', SignUpView.as_view()),

]

注册用户不需要任何身份验证。所以你需要这样写你的观点。

class SignUpView(APIView):
    """
        Signup for the user.
    """
    authentication_classes = ()
    permission_classes = ()

    def get(self, request):
        return Response({'result': True, 'message': 'User registered successfully.'})

对于所有其他请求,您需要在 header 中传递身份验证令牌。在这种情况下,您无需提及身份验证和权限 类,因为将使用您的默认值 类。