GET Object
API Description
You can user this API to download an object in a specified bucket.
Method Definition
ObsClient.getObject
Request Parameter
|
Field |
Type |
Optional or Mandatory |
Description |
|---|---|---|---|
|
Bucket |
String |
Mandatory |
Bucket name |
|
Key |
String |
Mandatory |
Object name |
|
VersionId |
String |
Optional |
Object version ID |
|
IfMatch |
String |
Optional |
Returns the source object if its ETag is the same as the one specified by this parameter; otherwise, an error code is returned. |
|
IfModifiedSince |
String |
Optional |
Returns the object if it is modified after the time specified by this parameter; otherwise, an error code is returned. This parameter must conform with the HTTP time format specified in http://www.ietf.org/rfc/rfc2616.txt. |
|
IfNoneMatch |
String |
Optional |
Returns the source object if its ETag is different from the one specified by this parameter; otherwise, an error code is returned. |
|
IfUnmodifiedSince |
String |
Optional |
Returns the object if it remains unchanged since the time specified by this parameter; otherwise, an error code is returned. This parameter must conform with the HTTP time format specified in http://www.ietf.org/rfc/rfc2616.txt. |
|
Range |
String |
Optional |
Download range. The value range is [0, object length-1] and is in the format of bytes=x-y. The maximum length of Range is the length of the object minus 1. If it exceeds this value, the length of the object minus 1 is used. |
|
Origin |
String |
Optional |
Origin of the cross-domain request specified by the pre-request. Generally, it is a domain name. |
|
RequestHeader |
String |
Optional |
HTTP headers in the cross-domain request |
|
ResponseCacheControl |
String |
Optional |
Rewrites the Cache-Control header in the response. |
|
ResponseContentDisposition |
String |
Optional |
Rewrites the Content-Disposition header in the response. |
|
ResponseContentEncoding |
String |
Optional |
Rewrites the Content-Encoding header in the response. |
|
ResponseContentLanguage |
String |
Optional |
Rewrites the Content-Language header in the response. |
|
ResponseContentType |
String |
Optional |
Rewrites the Content-Type header in the response. |
|
ResponseExpires |
String |
Optional |
Rewrites the Expires header in the response |
|
ImageProcess |
String |
Optional |
Image processing parameter |
|
SaveAsFile |
String |
Optional |
Target path to which the object is downloaded (containing the file name) |
|
SaveAsStream |
Boolean |
Optional |
Whether the object is returned as an instance of stream.Readable |
|
SseC |
String |
Optional |
Algorithm used in SSE-C decryption. The value can be:
|
|
SseCKey |
Buffer |
Optional |
Key used in SSE-C decryption, which is calculated by using AES256. |
- SaveAsFile and SaveAsStream cannot be used together.
- If the download request includes IfUnmodifiedSince or IfMatch, and IfUnmodifiedSince or IfMatch is not met, 412 Precondition Failed will be returned.
- If the download request includes IfModifiedSince or IfNoneMatch, and IfModifiedSince or IfNoneMatch is not met, 304 Not Modified will be returned.
Returned Result (InterfaceResult)
|
Field |
Type |
Description |
|---|---|---|
|
RequestId |
String |
Request ID returned by the OBS server |
|
DeleteMarker |
String |
Whether the deleted object is a delete marker |
|
LastModified |
String |
Time when the last modification was made to the object |
|
ContentLength |
String |
Object size in bytes |
|
CacheControl |
String |
Cache-Control header in the response |
|
ContentDisposition |
String |
Content-Disposition header in the response |
|
ContentEncoding |
String |
Content-Encoding header in the response |
|
ContentLanguage |
String |
Content-Language header in the response |
|
ContentType |
String |
MIME type of the object |
|
Expires |
String |
Expires header in the response |
|
ETag |
String |
Object ETag |
|
VersionId |
String |
Object version ID |
|
WebsiteRedirectLocation |
String |
Location where the object is redirected to, when the bucket is configured with website hosting |
|
StorageClass |
String |
Storage class of the object. When the storage class is OBS Standard, the value is null. |
|
Restore |
String |
Restore status of the object in the OBS Archive storage class |
|
AllowOrigin |
String |
If Origin in the request meets the CORS rules of the bucket, AllowedOrigin in the CORS rules is returned. |
|
AllowHeader |
String |
If RequestHeader in the request meets the CORS rules of the bucket, AllowedHeader in the CORS rules is returned. |
|
AllowMethod |
String |
AllowedMethod in the CORS rules of the bucket |
|
ExposeHeader |
String |
ExposeHeader in the CORS rules of the bucket |
|
MaxAgeSeconds |
String |
MaxAgeSeconds in the CORS rules of the bucket |
|
SseKms |
String |
Algorithm used in SSE-KMS decryption |
|
SseKmsKey |
String |
Master key used in SSE-KMS decryption |
|
SseC |
String |
Algorithm used in SSE-C decryption |
|
SseCKeyMd5 |
String |
MD5 value of the key used in SSE-C decryption |
|
Expiration |
String |
Expiration details |
|
Content |
String or stream.Readable |
Content of the object. The content is null when SaveAsFile is set. The content is an instance of stream.Readable when SaveAsStream is set to true. The content is an instance of Buffer when neither SaveAsFile nor SaveAsStream is set. |
|
Metadata |
Object |
Customized metadata of the object |
Sample Code
obsClient.getObject({
Bucket : 'bucketname',
Key : 'objectkey',
Range: 'bytes=0-10',
// SaveAsFile: 'localfile',
// SaveAsStream: true
},(err, result) => {
if(err){
console.error('Error-->' + err);
}else{
if(result.CommonMsg.Status < 300){
console.log('RequestId-->' + result.InterfaceResult.RequestId);
console.log('ETag-->' + result.InterfaceResult.ETag);
console.log('VersionId-->' + result.InterfaceResult.VersionId);
console.log('ContentLength-->' + result.InterfaceResult.ContentLength);
console.log('DeleteMarker-->' + result.InterfaceResult.DeleteMarker);
console.log('LastModified-->' + result.InterfaceResult.LastModified);
console.log('StorageClass-->' + result.InterfaceResult.StorageClass);
console.log('Content-->' + result.InterfaceResult.Content.toString());
console.log('Metadata-->' + JSON.stringify(result.InterfaceResult.Metadata));
}else{
console.log('Code-->' + result.CommonMsg.Code);
console.log('Message-->' + result.CommonMsg.Message);
}
}
});
Last Article: Append Object
Next Article: PUT Object - Copy
Did this article solve your problem?
Thank you for your score!Your feedback would help us improve the website.