django drf 自定义jwt用户验证逻辑

Posted chenyishi

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了django drf 自定义jwt用户验证逻辑相关的知识,希望对你有一定的参考价值。

新建Backend类

from django.contrib.auth.backends import ModelBackend
from django.shortcuts import render

from django.http import HttpResponse
# Create your views here.

from django.contrib.auth import get_user_model
from django.db.models import Q

User = get_user_model()  # 须在settings里配置AUTH_USER_MODEL = ‘users.UserProfile‘

class CumstomBackend(ModelBackend):
    def authenticate(self, request, username=None, password=None, **kwargs):
        try:
            user = User.objects.get(Q(username=username)|Q(mobile=username))
            if user.check_password(password):
                return user
        except Exception as e:
            return None

配置settings

AUTH_USER_MODEL = users.UserProfile
AUTHENTICATION_BACKENDS=(
    users.views.CumstomBackend,
)

 

以上是关于django drf 自定义jwt用户验证逻辑的主要内容,如果未能解决你的问题,请参考以下文章

如何使用访问和刷新令牌返回自定义数据以识别 Django Rest Framework 简单 JWT 中的用户?

无法使用用户名/密码登录令牌端点:drf 令牌身份验证和自定义用户模型,Django

django drf框架中的user验证以及JWT拓展的介绍

Django Rest Framework(DRF) Json Web Token(JWT) 身份验证和登录过程

drf框架中jwt认证,以及自定义jwt认证

在 Django/DRF 中使用 JWT 身份验证并将 JWT 存储在 HttpOnly Cookie 中