文件上传
POST
/api/common/fileUpdate最后修改时间: 1 年前
责任人: 未设置
公共文件上传接口,返回文件ID,若文件ID在一定的时间内没有使用则会被标记过期文件(若有自动或手动删除措施则文件会被删除,文件ID也会删除)
请求参数
Body 参数multipart/form-data
file
file
可选
示例值:
file://C:\Users\Administrator\Desktop\爱码科技.png
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
code
integer
必需
message
string
必需
timestamp
integer
必需
nonceStr
string
必需
data
object
必需
file_id
string
文件ID
moreOtherData
object
必需
signature
string
必需
示例
{
"code": 1,
"message": "上传成功",
"timestamp": 1673842190,
"nonceStr": "a878e9b4b50a571ecf00224e45e34e9a",
"data": {
"file_id": "9",
"moreOtherData": {
"api_extra_data": "",
"request_safe_code": ""
}
},
"signature": "e83f94e4253c4a9ad2c37df2b41172b0"
}
最后修改时间: 1 年前