我使用 Django restframework 来实现 api 服务器。
我还使用 djangorestframework-jwt 进行令牌身份验证。
[urls.py]
from django.contrib import admin
from django.urls import path, include
from rest_framework_jwt.views import refresh_jwt_token
urlpatterns = [
path('admin/', admin.site.urls),
path('', include('rest_auth.urls')),
path('registration/', include('rest_auth.registration.urls')),
path('refresh-token/', refresh_jwt_token),
]
一切正常。但我想知道如何从令牌中提取有效负载?
例如,有文章表。
[/article/serializers.py]
from rest_framework import serializers
from . import models
class ArticleSerializer(serializers.ModelSerializer):
class Meta:
model = models.Article
fields = '__all__'
[模型.py]
from django.db import models
class Article(models.Model):
subject = models.CharField(max_length=20)
content = models.CharField(max_length=100)
[视图.py]
from rest_framework.views import APIView
from rest_framework.response import Response
from rest_framework import status
from . import models, serializers
class Article(APIView):
def get(self, request, format=None):
all_article = models.Article.objects.all()
serializer = serializers.ArticleSerializer(all_article, many=True)
return Response(data=serializer.data, status=status.HTTP_200_OK)
在这种情况下,我只想返回正确的响应 payload['userid'] == article's userid。
如何从 jwt 令牌中提取用户名?
以前,我只是使用jwt而不是djangorestframework-jwt,所以只是解码请求数据并使用它。
但是现在我使用djangorestframework-jwt,我很困惑我该怎么做。
有什么解决办法吗?
谢谢。