2021-07-24 登陆注册页面

1. 登陆/注册页面

1. url: /client/login

2.注册:(公司名称+手机号+姓名 ) + 防刷

3.登陆: (手机号+姓名 ) + 防刷

防刷:md5+言 校验

2. 接口

2-1. 注册

request:

url: /register

method: POST

body: { companyName:'', phone:'', name: '' }

response:

{code: 200, content: {token:'', refreshToken:''}, reason: ''}

获取ip地址,解析位置信息,预防攻击

2-2. 登陆

request:

url: /login

method: GET

body: { phone:'', name: '' }

response:

{code: 200, content: {token:'', refreshToken: ''}, reason: ''}

你可能感兴趣的:(2021-07-24 登陆注册页面)