提交手机号码,获取对应用户账户的安全问题提示。接口提供给未登录用户使用。
Request
HTTP request
POST https://www.featapi.com/api/user/user-security-question/hint/
Parameters
无需添加参数。
Authorization
该请求需要授权以下scopes访问权限:
Scopes |
---|
无 |
For more information, see the authentication and authorization page.
Request body
未登录用户必须提交以下参数访问接口:
Property name | Value | Description | Notes |
---|---|---|---|
必填 | |||
phone | string | 带拨号区域码的电话号码,即用户的账号,格式为“+XX-YYYYYY” |
Response
如果请求成功,该API返回用户的User.SecurityQuestion安全问题提示在响应体信息。
200 Returns User security question successfully
{
"data": {
"question": "This is the question"
}
}
400 非法操作
PHONE_NOT_EXIST —— 账号不存在
{
"error": true,
"message": "Phone account is not exist. Please check again.",
"data": {},
"code": "PHONE_NOT_EXIST"
}