如何使用 GraphQL 自定义的 Authentication 类?

Posted

技术标签:

【中文标题】如何使用 GraphQL 自定义的 Authentication 类?【英文标题】:How to use GraphQL customized Authentication class? 【发布时间】:2020-03-31 09:08:04 【问题描述】:

使用 Django REST Framework(DRF) 我可以像这样自定义Authentication class and Permission class

from django_cognito_jwt import JSONWebTokenAuthentication
from rest_framework import viewsets
from rest_framework.permissions import IsAuthenticated

class CognitoQuestionViewSet(viewsets.ModelViewSet):
    authentication_classes = (JSONWebTokenAuthentication,)
    permission_classes = (IsAuthenticated,)
    queryset = Question.objects.all()
    serializer_class = QuestionSerializer

在 GraphQL 中 docs。它使用与我的项目不同的标准 Django 登录。我检查了来源LoginRequiredMixin,但没有运气。我在那里看不到Authentication class,然后我可以覆盖它

问题: 如何自定义 GraphQL Authentication class and Permission class 就像我在 DRF 中所做的一样

【问题讨论】:

【参考方案1】:

经过试验并尝试使用django-graphql-jwt 没有运气。 vinayan3 回答了我的问题。因为django-cognito-jwt 被认为是DRF 的补码。

解决方案: 只需将TokenAuthentication 替换为来自django_cognito_jwtJSONWebTokenAuthentication

【讨论】:

听起来你应该可以使用django-graphql-jwts' @user_passes_test decorator 来编写自定义权限验证函数。 django-graphql-auth 允许使用 GraphQL 注册和管理用户帐户。它扩展了 django-graphql-jwt 以进行 JWT 身份验证。

以上是关于如何使用 GraphQL 自定义的 Authentication 类?的主要内容,如果未能解决你的问题,请参考以下文章

如何使用 GraphQL 上的自定义字段查询?

如何使用 Strapi 在 GraphQL 中添加自定义查询?

使用 Hasura graphql 模式时如何自定义 graphql-code-generator 生成的字段的类型

如何在 django-graphql-auth 中使用自定义注册突变

如何在 apollo 的 graphql-gql 中使用从 npm 包导入的自定义 graphQL 类型

Strapi - 如何使用自定义属性扩展 graphql 类型模式?