user login
POST
/api/user/login请求参数
Body Params application/json
captcha
string
required
captcha_id
string
required
email
string
required
password
string
required
user_tag
string
required
always "ipcola"
Example
{
"user_tag": "ipcola",
"captcha": "23",
"captcha_id": "xxxxxxxxxxx",
"email": "example@email.com",
"password": "mypassword123"
}
示例代码
Responses
user token(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
Data Schema
meta_message
string
required
success or other error msg
meta_status
integer
required
1 for success, negative for error
token
string
required
user token
Example
{
"meta_message": "string",
"meta_status": 0,
"token": "string"
}
Last modified: 1 年前