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": "手机号必须" } ~~~