{
"client_id": "xx应用id",
"payload": "加密后的登录字符串",
"options": {
"e_type": "加密类型",
"response_type": "token",
"custom_data": {
"user_type": "10-11"
}
}
}
curl --location --request POST '/auth/v1/login/sms' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data-raw '{
"client_id": "xx应用id",
"payload": "加密后的登录字符串",
"options": {
"e_type": "加密类型",
"response_type": "token",
"custom_data": {
"user_type": "10-11"
}
}
}'
{
"code": "200",
"msg": "string",
"data": {
"access_token": "string",
"refresh_token": "string",
"token_type": "string",
"expire_in": 0
}
}