0

我使用 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,我很困惑我该怎么做。

有什么解决办法吗?

谢谢。

4

1 回答 1

1

我在这里检查了图书馆的文档后解决了这个问题

https://jpadilla.github.io/django-rest-framework-jwt/

我需要覆盖所有函数以根据我的应用程序的要求返回自定义响应。

此外,我们需要在我的应用程序的 settings.py 中的 JWT_AUTH 中指定任何其他设置。

IE

JWT_AUTH = {
    'JWT_RESPONSE_PAYLOAD_HANDLER':
    'myapp.utils.jwt_response_payload_handler',
}

并且需要jwt_response_payload_handler在我的应用程序的 util 文件夹中定义函数以覆盖默认函数。

于 2018-06-28T08:59:55.837 回答