简介
本文档提供关于调用上传下载接口时对链接进行限速。
使用说明
限速值设置范围为819200 - 838860800,单位默认为 bit/s,即100KB/s - 100MB/s,如果超出该范围将返回400错误。
示例一:上传时对单链接限速
cos.putObject({
Bucket: 'examplebucket-1250000000',
Region: 'COS_REGION',
Key: '1.jpg',
StorageClass: 'STANDARD',
Body: fileObject,
Headers: {
'x-cos-traffic-limit': 819200,
},
onProgress: function(progressData) {
console.log(JSON.stringify(progressData));
}
}, function(err, data) {
console.log(err || data);
});
示例二:下载时对单链接限速
cos.getObject({
Bucket: 'examplebucket-1250000000',
Region: 'COS_REGION',
Key: '1.jpg',
Headers: {
'x-cos-traffic-limit': 819200,
},
}, function(err, data) {
console.log(err || data.Body);
});
本页内容是否解决了您的问题?