Django 配置JWT认证方式
1. 安装 rest_framework + djangorestframework_simplejwt 安装djangorestframework_simplejwt : pip install djangorestframework-simplejwt 安装rest_framework: pip install djangorestframework djangorestframework_simplejwt 是提供 jwt 的 django 应用。 2. 配置好 rest_framework 后,settings.py 里加上以下内容以支持 jwt认证 REST_FRAMEWORK = { 'DEFAULT_AUTHENTICATION_CLASSES': [ 'rest_framework_simplejwt.authentication.JWTAuthentication', ], } 3. 写个测试的 view from rest_framework import permissions from rest_framework_simplejwt import authentication class TestView(views.APIView): permission_classes = [permissions.IsAuthenticated]