文件上传服务
更新时间:2023-03-10
1、接口地址:POST {IP}:{PORT}/open/{versionId}/file/upload
2、入参(放到请求的body中,form-data格式)
参数名 | 类型 | 是否可空 | 父节点 | 备注 |
---|---|---|---|---|
file | file | 否 | 文件 |
3、返回值
参数名 | 类型 | 父节点 | 备注 |
---|---|---|---|
code | int | HTTP状态码 | |
time | long | 时间 | |
msg | string | 状态信息 | |
data | object | 返回数据 | |
url | string | 上传的文件地址 | |
key | string | 文件key值 |
示例:
{
"time":1572838587049,
"data":{
"url":"http://localhost:8080/api/v2/file/download?key=xxxxxxxx",
"key":"xxxxxxxxxxxxxxx"
},
"code":200,
"msg":"OK"
}