tencentyun / cos-nodejs-sdk-v5

腾讯云 COS Nodejs SDK(XML API)
https://cloud.tencent.com/product/cos
MIT License
233 stars 79 forks source link

PUT Object不支持传headers么? #85

Closed fula2013 closed 4 years ago

fula2013 commented 4 years ago

https://cloud.tencent.com/document/product/436/7749 根据官方的通讯协议文档, 支持传headers x-cos-meta-*

但是node sdk不支持?

carsonxu commented 4 years ago

支持的:

cos.putObject({
  ...,
  Headers: {
    'x-cos-meta-test': '123'
  },
})