更新时间:2024-12-03 GMT+08:00
上传对象
本示例用于上传字符串“Hello OBS”到桶名为“bucketname”里,名称为“objectname”。
代码示例如下所示:
obsClient.putObject({ Bucket : 'bucketname', Key : 'objectname', Body : 'Hello OBS' }, function (err, result) { if(err){ console.error('Error-->' + err); }else{ console.log('Status-->' + result.CommonMsg.Status); } });
- 更多上传对象的信息,请参见上传对象。
父主题: 快速入门