1 登录
发送 HTTP POST 至 http://ip:999/magicflu/rlogin
POST 内容
j_username=username&j_password=password,其中 username 为用户名,password 为密码。
3 返回结果
(1)登录失败
返回 JSON 格式字符串:{"status":0,"errorCode":3}
登录失败情况下 status 为 0,errorCode 为 0-5,其中 0 和 1 表示许可无效,2表示帐号已被禁止登录,3 表示帐号或密码错误,4 和 5 为 H5 模块专用。
(2)登陆成功返回
{"status":1," username":”test”, "nickname":”test”,”sid”:”ASD78975DDD”,”id”:”1a54a37f-3127-41de-942e-b3588ed6bdeb”}
登录成功时 status 为 1,username 表示用户名,nickname 表示姓名,sid 表 示 会 话ID,id 为此账号的 id。
|