FDS Restful API
Get object related api supported by FDS
Version: 1.0.0
/{bucketname}/{objectname}
GET
Summary:
获取object
Description:
必须拥有Object的READ
权限才能执行该操作
Parameters
Name | Located in | Description | Required | Schema |
---|---|---|---|---|
bucketname | path | Bucket名字 | Yes | string |
objectname | path | Object名字 | Yes | string |
authorization | header | 认证信息,计算方式参考签名认证相关文档 | No | string |
Date | header | 请求时间 | Yes | string |
Range | header | 符合http协议的range请求参数,例如读取文件前1K字节bytes=0-1023 ,跳过第一个字节读取文件剩余内容bytes=0- |
No | string |
Responses
Code | Description |
---|---|
200 | 请求成功,返回的body里包含Object的内容,头部包含Object的metadata |
命令行示例
curl -v -X 'GET' 'http://cnbj0.fds.api.xiaomi.com/fds-demo/tests/test.txt' \
-H 'authorization: Galaxy-V2 54xxx45:dgxxxQ=' \
-H 'date: Tue, 28 Feb 2017 09:02:38 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)
> GET /fds-demo/tests/test.txt HTTP/1.1
> User-Agent: curl/7.35.0
> Host: cnbj0.fds.api.xiaomi.com
> Accept: */*
> authorization: Galaxy-V2 54xxx45:dgxxxQ=
> date: Tue, 28 Feb 2017 09:05:04 GMT
>
< HTTP/1.1 200 OK
* Server Tengine is not blacklisted
< Server: Tengine
< Date: Tue, 28 Feb 2017 09:06:06 GMT
< Content-Type: application/json
< Content-Length: 22
< Connection: keep-alive
< last-modified: Tue, 28 Feb 2017 09:05:33 GMT
< x-xiaomi-meta-acl: PUBLIC_READ
< content-md5: 0412bee1a7bf845f176c5c0d1ae7cf07
< Cache-Control: max-age=86400
< 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
This is object content