查询用户是否登录
- 请求地址:http://domain.com/index.php?c=api&method=check_login
- 请求方法:GET
返回值
{
"code": 200,
"data": "true",
"msg": ""
}
-
code
:状态码,200代表请求成功 -
data
:true
代表已经登录,false
则未登录
如果失败,返回:
{
"code": -1002,
"err_msg": "Authorization failure!"
}
No Comments