使用django-rest-auth自带登录注册api

Posted Klay_zhu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用django-rest-auth自带登录注册api相关的知识,希望对你有一定的参考价值。

一、背景

  登录注册基础功能虽说常见但也对于初学者来说较难,容易被劝退,使用django-rest-auth可以快速实现该功能,如何专注于业务逻辑的实现。

 

二、关于

三、完整流程

  • 创建项目
  • 新建的项目,目录结构如下  

   

  • 安装相关依赖
  • pip install django-rest-framework
    pip install django-rest-auth
    
    #使用django-rest-auth 自带的登录注册
    pip install django-rest-auth[with_social] 

     

  • settings.py  增加
  • INSTALLED_APPS = [
        ...
        #django-rest-auth 组件
        \'rest_framework.authtoken\',
        \'rest_framework\',
        \'rest_auth\',
        \'django.contrib.sites\',
        \'allauth\',
        \'allauth.account\',
        \'rest_auth.registration\'
    ]
    
    SITE_ID = 1
    #若要使用mysql,修改DATABASES 设置如下
    DATABASES = {
        \'default\': {
            \'ENGINE\': \'django.db.backends.mysql\',
            #数据库名称
            \'NAME\': \'ONLINE_AUTO_TEST\',
            #数据库用户名
            \'USER\':\'dj_admin\',
            \'PASSWORD\':\'123456\',
            \'HOST\':\'127.0.0.1\',
            \'PORT\':\'3306\',
        }
    }

     

  • urls.py  配置路由如下
  • urlpatterns = [
        ...
        url(r\'^rest-auth/\', include(\'rest_auth.urls\')),
        url(r\'^rest-auth/registration/\', include(\'rest_auth.registration.urls\'))
    ]

     

  • 同步数据库
  • python manage.py migrate

     

三、测试

  • 弄好了可以测试下

  

 

以上是关于使用django-rest-auth自带登录注册api的主要内容,如果未能解决你的问题,请参考以下文章

我可以通过 django-rest-auth 登录和注册返回 JSON Web Token (JWT) 吗?

django-rest-auth 自定义注册无法保存额外字段

使用 django-rest-auth 和 allauth 进行 Google 身份验证

django-rest-auth + django-allauth + angular2

django-rest-auth:使用 google 进行社交登录

如何在 DRF + django-rest-auth 中使用自定义用户模型保存注册时的额外字段