1.28.17 init-multipart-upload
优质
小牛编辑
127浏览
2023-12-01
Init multipart upload related api supported by FDS
Version: 1.0.0
/{bucketname}/{objectname}
PUT
Summary:
初始化分片上传
Description:
必须拥有Bucket的WRITE
权限才能执行该操作
Parameters
Name | Located in | Description | Required | Schema |
---|---|---|---|---|
bucketname | path | Bucket名字 | Yes | string |
objectname | path | Object名字 | Yes | string |
uploads | query | 表示初始化分片上传,值为空 | Yes | string |
authorization | header | 认证信息,计算方式参考签名认证相关文档 | No | string |
Date | header | 请求时间 | Yes | string |
Responses
Code | Description | Schema |
---|---|---|
200 | 请求成功,返回用于后续上传的分片ID | object |
命令行示例
# 初始化分片上传
curl -v -X 'PUT' 'http://cnbj0.fds.api.xiaomi.com/fds-demo/tests/test.txt?uploads' \
> -H 'content-type: application/json; charset=UTF-8' \
> -H 'authorization: Galaxy-V2 54x45:iIxxxDE=' \
> -H 'date: Mon, 27 Feb 2017 11:38:04 GMT'
* Hostname was NOT found in DNS cache
* Trying 111.206.200.99...
* Connected to cnbj0.fds.api.xiaomi.com (111.206.200.99) port 80 (#0)
> PUT /fds-demo/tests/test.txt?uploads HTTP/1.1
> User-Agent: curl/7.35.0
> Host: cnbj0.fds.api.xiaomi.com
> Accept: */*
> content-type: application/json; charset=UTF-8
> authorization: Galaxy-V2 54x45:iIxxxDE=
> date: Mon, 27 Feb 2017 11:38:04 GMT
>
< HTTP/1.1 200 OK
* Server Tengine is not blacklisted
< Server: Tengine
< Date: Mon, 27 Feb 2017 11:42:17 GMT
< Content-Type: application/json
< Content-Length: 105
< Connection: keep-alive
< Access-Control-Allow-Credentials: true
< Access-Control-Max-Age: 1728000
< Access-Control-Allow-Methods: GET, POST, PUT, HEAD, DELETE, OPTIONS
< Access-Control-Allow-Headers: DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization,Content-MD5
< Access-Control-Expose-Headers: content-md5, upload-time, x-xiaomi-meta-content-length
<
* Connection #0 to host cnbj0.fds.api.xiaomi.com left intact
{"bucketName":"fds-demo","objectName":"tests/test.txt","uploadId":"26287b89-62d7-4527-99ec-41a8fd8794a5"}