获取认证器列表
GET
/mfa/authenticators返回应用的认证器列表
请求参数
无
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
array of:
id
string
可选
authenticator_type
string
认证器类型
认证器类型
oob_channel
string
可选
name
string
可选
active
boolean
可选
示例成功示例
[
{
"id": "recovery-code|DsvzGfZw2Fg5N3rI",
"authenticator_type": "recovery-code",
"active": true
},
{
"id": "sms|Gb192kcL2n93S4yB",
"authenticator_type": "oob",
"oob_channel": "sms",
"name": "+X XXXX1234",
"active": true
},
{
"id": "sms|cD422kdB3LjKS4cc",
"authenticator_type": "oob",
"oob_channel": "sms",
"name": "+X XXXX1234",
"active": false
},
{
"id": "push|624cJ7Mcwj9P794y",
"authenticator_type": "oob",
"oob_channel": "authok",
"name": "李雷的设备",
"active": true
},
{
"id": "totp|LJaKaN5O3tjRFxy4",
"authenticator_type": "otp",
"active": true
}
]
最后修改时间: 3 年前