文件上传
POST
/api/file/upload文件上传接口。token可以通过 个人中心查看
请求参数
Header 参数
sk
string
在个人信息里面查看
示例值:
5d356220-bda0-4e90-a0ee-6ffc053a984f
Body 参数multipart/form-data
file
file
文件,支持多个
示例值:
file://C:\Users\admin\Downloads\f76ed4635cbd48209e0f626074b464d3.png
fileParentFolder
string
可选
文件夹id,默认ROOT
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
total
integer
总数
rows
array [object {2}]
链接列表
url
string
文件url
thumb
string
略缩图地址
code
integer
必需
msg
string
必需
currentPage
integer
必需
currentSize
integer
必需
totalPage
null
必需
data
null
必需
示例
{
"total": 1,
"rows": [
{
"url": "https://fengzheng.space/file/17809"
}
],
"code": 0,
"msg": "操作成功",
"currentPage": 0,
"currentSize": 0,
"totalPage": null,
"data": null
}
最后修改时间: 5 个月前