2

好吧,我正在尝试使用视图中的自定义身份验证类为登录用户创建新的访问令牌。

序列化程序.py

class UserCreateSerializer(ModelSerializer):            

    def create(self, validated_data):
        user = User.objects.create_user(validated_data['username'], 
            validated_data['email'],
            validated_data['password'])
        return user

    class Meta:
        model = User
        fields = ('username', 'email' ,'password')

视图.py

class User_Create_view(CreateAPIView):
    serializer_class = UserCreateSerializer
    queryset = User.objects.all()
    permission_classes = [AllowAny]
    authentication_classes = Has_Access_Token

    def create(self, request):
        serializers =self.serializer_class(data=request.data)
        if serializers.is_valid():
        # pdb.set_trace()
            serializers.save()   
            # Has_Access_Token.access_token(Has_Access_Token())         
            return Response(serializers.data)
        return Response(status=status.HTTP_202_ACCEPTED))

权限.py

class Has_Access_Token(BaseAuthentication):
    def access_token(self):
        app = Application.objects.get(name="testing")
        tok = generate_token()
        pdb.set_trace()
        acce_token=AccessToken.objects.get_or_create(
        user=User.objects.all().last(),
        application=app,
        expires=datetime.datetime.now() + datetime.timedelta(days=365),
        token=tok)
        return acce_token

    @method_decorator(access_token)
    def authenticate(self):
        return request

如果我使用装饰器

文件“/usr/lib/python2.7/functools.py”,第 33 行,在 update_wrapper setattr(wrapper, attr, getattr(wrapped, attr)) AttributeError: 'tuple' object has no attribute ' module '

如果我没有使用装饰器文件“/home/allwin/Desktop/response/env/local/lib/python2.7/site-packages/rest_framework/views.py”,第 262 行,在 get_authenticators 中返回 [auth() for auth in self.authentication_classes] TypeError: 'type' object is not iterable

我面临的问题是,当我在 serializer.save() 之后隐式使用 Has_Access_Token 功能时,在管理员中针对用户生成了访问令牌,但这不是有效的方法,因此我需要覆盖视图中的自定义 authentication_class。

有人可以建议一些方法来解决这个问题,或者让我知道上面代码的装饰器更正。

提前致谢。

4

1 回答 1

3

REST_FRAMEWORK.DEFAULT_AUTHENTICATION_CLASSESsettings.py文件中设置时,customAuthencationClass必须如下所示:

REST_FRAMEWORK = {
    'DEFAULT_AUTHENTICATION_CLASSES': [ # need to be list not tuple
        'CustomAuthentication',
    ],
}
于 2018-10-03T08:51:22.603 回答