Authencation

Posted tangshuo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Authencation相关的知识,希望对你有一定的参考价值。

用户认证

token ( 前后端分离 )

cookie & session (前后端不分离)

token = models.UUIDField()
import uuid
token = uuid.uuid4()
 
class TokenAuthencate(BaseAuthentication):
    def authenticate(self, request):
        token = request.META.get(‘HTTP_AUTHENTICATION‘)
        user_obj = models.User.objects.filter(token=token).first()
        if not user_obj:
            raise AuthenticationFailed(‘无效token‘)
 
        return user_obj, token
 

aaa

继承 BaseAuthentication 类,并重写authenticate方法

三种操作:

  1. 抛出异常,后续不执行 from rest_framework.execptions import AuthenticationFailed

    raise AuthenticationFailed ({‘code‘:xxx,‘msg‘:xxx})
    
  2. return 一个元组 (1,2) ,认证通过 ,以后 request.user 就是 1 ,request.auth 就是2

  3. None 这个认证什么也不做 干下一个认证

return (payload.token)

以上是关于Authencation的主要内容,如果未能解决你的问题,请参考以下文章

微信小程序代码片段

VSCode自定义代码片段——CSS选择器

谷歌浏览器调试jsp 引入代码片段,如何调试代码片段中的js

片段和活动之间的核心区别是啥?哪些代码可以写成片段?

VSCode自定义代码片段——.vue文件的模板

VSCode自定义代码片段6——CSS选择器