8

我正在使用rest_framework_simplejwt对我的用户进行身份验证,但是在某些视图中我需要忽略它,因为这些是公共视图。我想将令牌检查到视图流中。预期的行为是:

在公众视野中

  • 避免令牌验证:如果有过期或无效的令牌,忽略它并让我在 APIView 中验证它

实际上rest_framework_simplejwt检查令牌并401在令牌无效或过期时引发......

我尝试authentication_classes像这样在 APIView 中禁用:

class SpecificProductApi(APIView):

    def get_authenticators(self):
        if self.request.method == 'GET':
            self.authentication_classes = []
        return super(SpecificProductApi, self).get_authenticators()

但是如果我在输入GET APIView方法之前禁用它,我不能这样做,if reques.user.is_authenticated:因为我禁用了令牌:(

是否存在一种方法可以输入 api http 方法并手动检查用户进入视图?谢谢

4

4 回答 4

8

我通过添加来完成它authentication_classes = []

from rest_framework import permissions

class SpecificProductApi(APIView):
    permission_classes = [permissions.AllowAny]
    authentication_classes = []
于 2020-04-06T20:03:36.577 回答
7

您可以简单地authentication_classes = []在视图中使用,但这总是会绕过 JWT 身份验证,即使存在带有令牌的有效 Authorization-header 也是如此。您最好将 JWTAuthentication-class 扩展如下(类似于 Jhon Edwin Sanz Gonzalez 的评论):

from rest_framework_simplejwt.authentication import JWTAuthentication
from rest_framework_simplejwt.exceptions import InvalidToken


class JWTAuthenticationSafe(JWTAuthentication):
    def authenticate(self, request):
        try:
            return super().authenticate(request=request)
        except InvalidToken:
            return None

然后authentication_classes = [JWTAuthenticationSafe]在您的视图中使用。

于 2020-07-20T16:59:32.413 回答
1

有一个非常相似的问题。要创建公共端点,您必须覆盖身份验证器,否则您将在过期/丢失令牌上返回 401/403。

但是,公共端点并不意味着它不应该具有身份验证。相反,它应该对 no-auth / expired-auth 有一个响应,对有效身份验证有另一个响应。

我不知道这是否是“正确”的方式,但这就是我遇到同样问题的方法。

像您所做的那样覆盖身份验证器,并添加一个额外的方法来验证您视图中的身份验证器。

例如:

class SomeApiView(APIView):
    def get_authenticators(self):
        # Override standard view authenticators.
        # Public endpoint, no auth is enforced.
        return []

    def get_auth(self):
        # Return a generator of all authenticators.
        return (auth() for auth in self.authentication_classes)

    def get_auth_detail(self, request):
        # Evaluate each authenticator and return the first valid authentication.
        for auth in self.get_auth():
            # You probably need try / except here to catch authenticators 
            # that are invalid (403/401) in the case of multiple authentication 
            # classes--such as token auth, session auth, etc...
            auth_detail = auth.authenticate(request)
            if auth_detail:
                return auth_detail

        return None, None

    def post(self, request):
        # Returns a tuple of (User, JWT), can be (None, None)
        user, jwt = self.get_auth_detail(request)  

        # Do your magic based on user value.
        if user:
            # User is authenticated.
        else:
            # User is anon / not-authenticated.
于 2020-01-01T02:38:36.363 回答
0

您只需要为相关视图指定权限类

from rest_framework.permissions import AllowAny

class SpecificProductApi(APIView):
    permission_classes = (AllowAny, )

此权限允许任何人通过 URL 访问此特定视图。

于 2020-01-01T08:55:08.393 回答