双因素认证令牌管理服务
还没有账户?立即注册
请点击邮箱中的激活链接完成注册
已有账户?返回登录
暂无令牌
点击或拖拽上传二维码图片
基础URL: - 认证方式: Bearer Token 请求头: Authorization: Bearer sk-xxxxxxxxxxxx
curl -X GET '-/x-totp' \ -H 'Authorization: Bearer sk-xxx'
curl -X POST '-/x-totp' \ -H 'Authorization: Bearer sk-xxx' \ -H 'Content-Type: application/json' \ -d '{ "name": "GitHub (username)", "secret": "JBSWY3DPEHPK3PXP" }'
curl -X DELETE '-/x-totp/{id}' \ -H 'Authorization: Bearer sk-xxx'
{ "success": true, "data": [ { "id": 1, "name": "GitHub (username)", "code": "123456", "time_left": 15, "created_at": "2025-10-21T10:00:00Z" } ] }