企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
[TOC] ## 个人资料 >[info] 站内信 0 没有未读的 其他就是未读的数量 > 是否授权的 0 未授权 不为0 有授权的 ~~~[api] get:/property <<< success { "code": 0, "data": { "nickname": "测试账号1",//昵称 "phone": "15181474781",//手机号 "sex": 0,//性别 0 女 1 男 "introduce": "",//描述 "photo": "https://chaoshensu.oss-cn-hangzhou.aliyuncs.com//property/1/1",//头像地址 "last_time": 1514530023,//最近登录时间 "status": 0,//状态 0 正常 1 已冻结 "name": "成都国嘉物业管理有限公司",//物业公司名 "email": 0,//站内信未读数 "warrant": 0,//是否有授权的房源 "open_num": 0,//开门次数 "open_reward": 0,//开门奖励 "deal_num": 0,//成交次数 "deal_reward": 0,//成交奖励 "entrust_num": 0,//推荐房源数 "entrust_reward": 0//推荐房源奖励 } } <<< error ~~~ ## 修改用户个人资料 ~~~[api] post:/property/update *string:nickname=昵称#用户昵称 *int:sex=0#性别 0 女 1 男 string:photo=www.baiudu.com#头像地址 string:introduce=自我介绍#自我介绍 <<< success { "code":0 } <<< error { "code":-1, "msg":"参数错误" } ~~~ ## 更换手机号 ~~~[api] post:/property/phone *string:phone=15181474781#手机号 *string:sms_captcha=12456#验证码 <<< success { "code":0 } <<< error { "code":-1, "msg":"参数错误" } ~~~ ## 更换密码 >[info] 密码需要加密 ~~~[api] post:/property/pwd *string:password=123456#原密码 *string:password_new=123456#新密码 <<< success { "code":0 } <<< error { "code":-1, "msg":"参数错误" } ~~~ ## 获取文件上传地址 >[info] 提交地址为返回参数中的host >[danger] 注:上传方式 需要使用表单 `FormData` 格式上传 >注:返回的上传参数中若有key,必须使用返回的key,如果没有,就需要使用返回的 `dir+/filename` 的格式拼接文件名 >注:`filename` 是自己定义的文件名 >注: file字段**必须在最后**,类型根据平台不同而不同,兼容 `FormData`即可 >注:上传成功之后会返回一个xml格式的文件,请解析xml文件 。 >注:取出xml文件的 location 当做图片或者视频地址 提交到服务器 ~~~[api] get:/property/getUpdatePath <<< 上传示例 { "OSSAccessKeyId": "oss_id", "policy": "policy", "Signature": "signature", "key":"key", "success_action_status":"201", "file":"raw file data" } <<< success { "oss_id": "",//ossid "host": "",//上传地址 "policy": "",//上传需要的 参数 "signature": "",//上传需要的 参数 "expire": 0,//上传时间限制 "dir": "",//上传文件目录名 "max_size": ,//上传文件大小限制 "key": ""//上传文件的文件名 } <<< error { "code": -1, "msg": "参数错误!" } ~~~