上传文件
开发中
PUT
/file/upload
最后修改时间:2024-04-30 14:42:51
请求参数
Cookie 参数
cloudreve-session
string
鉴权session
默认值:
{{cloudreve-session}}
Body 参数application/json
path
string
必需
size
integer
文件大小(字节)
name
string
文件名
policy_id
string
必需
last_modified
integer
必需
mime_type
string
必需
示例
{
"path": "/test/b",
"size": 188,
"name": "1.py",
"policy_id": "kVfW",
"last_modified": 1714481625683,
"mime_type": ""
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request PUT 'http://127.0.0.1:5212/api/v3/file/upload' \
--header 'Cookie: cloudreve-session=' \
--header 'Content-Type: application/json' \
--data-raw '{
"path": "/test/b",
"size": 188,
"name": "1.py",
"policy_id": "kVfW",
"last_modified": 1714481625683,
"mime_type": ""
}'
返回响应
🟢200成功
application/json
Body
code
integer
响应状态
data
object
必需
sessionID
string
用于上传完成后确认
chunkSize
integer
上传分片大小
expires
integer
上传会话过期时间
msg
string
错误信息
示例
{
"code": 0,
"data": {
"sessionID": "string",
"chunkSize": 0,
"expires": 0
},
"msg": "string"
}
修改于 2024-04-30 14:42:51