AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
[TOC] ## 获取验证码 ~~~[api] post:/acquire *string:phone=15181474781#手机号 <<< success { "code": 0, "data": { "expire": 10,//验证码有效分钟数 "length": 6,//验证码长度 "captcha": "175382"//调试输出验证码 } } <<< error { "code": -1, "msg": "手机号长度错误" } ~~~ ## 登录 >[danger] 注: 密码请加密 ~~~[api] post:/login *string:phone=15181474781#手机号 *string:password=123456#密码 <<< success { "code": 0, "data": { "sessionKey": "PHPSESSID", "sessionValue": "fvvn7vnj7lqntncraafahphe95", "type": "cooperation_sale", "id": 1 } } <<< error { "code": -1, "msg": "手机号长度错误" } ~~~ ## 退出登录 ~~~[api] get:/out <<< success { "code": 0 } ~~~ ## 注册 >[danger] 注: 密码请加密 > ~~~[api] post:/register *string:phone=15181474781#手机号 *string:sms_captcha=123456#验证码 *string:password=123456#密码 <<< success { "code": 0 } <<< error { "code":-1, "msg":"参数错误" } ~~~ ## 忘记密码 ~~~[api] post:/forget *string:phone=15181474781#手机号 *string:sms_captcha=123456#验证码 *string:password=123456#密码 <<< success { "code":0 } <<< error { "code":-1, "msg":"参数错误" } ~~~ ## 获取平台协议 ~~~[api] get:/config/protocol <<< success { "code": 0, "data": { "protocol": ""//平台协议 } } <<< error { "code":-1, "msg":"参数错误" } ~~~