ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、视频、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
[TOC=2] ## 短信验证码 ~~~[api] post:/smsCaptcha/v2/acquire *string:phone=13333333333#手机号码 <<< debug { "code": 0, "data": { "expire": 10, // 有效时间 分钟 "length": 6, // 验证码长度 "captcha": "930349" // 验证码 } } <<< success { "code": 0, "data": { "expire": 10, "length": 6 } } <<< error { "code": -1, "msg": "手机号不能为空" } ~~~ ## 手机注册 ~~~[api] post:/phone_register *string:username=13333333333#手机号 *string:password=123456#密码 *string:sms_captcha=930349#验证码 <<< success { "code": 0 } <<< error { "code": -1, "msg": "手机号必须" } ~~~ ## 密码找回 ~~~[api] post:/phone_retrieve *string:username=13333333333#手机号 *string:password=123456#密码 *string:sms_captcha=930349#验证码 <<< success { "code": 0 } <<< error { "code": -1, "msg": "手机号必须" } ~~~