查看PDF

上传对象

更新时间: 2019-03-13 10:26

功能说明

上传对象到指定桶中。

方法定义

  1. func (obsClient ObsClient) PutObject(input *PutObjectInput) (output *PutObjectOutput, err error)

使用带授权信息URL的方法定义

  1. func (obsClient ObsClient) PutObjectWithSignedUrl(signedUrl string, actualSignedRequestHeaders http.Header, data io.Reader) (output *PutObjectOutput, err error)

请求参数


参数名

类型

约束

input

*PutObjectInput

必选

返回结果


参数名

类型

output

*PutObjectOutput

err

error

代码样例

  1. func main() {
  2. input := &obs.PutObjectInput{}
  3. input.Bucket = "bucketname"
  4. input.Key = "objectkey"
  5. input.Body = strings.NewReader("Hello OBS")
  6. output, err := obsClient.PutObject(input)
  7.  
  8. if err == nil {
  9. fmt.Printf("RequestId:%s\n", output.RequestId)
  10. fmt.Printf("ETag:%s, StorageClass:%s\n", output.ETag, output.StorageClass)
  11. } else {
  12. if obsError, ok := err.(obs.ObsError); ok {
  13. fmt.Println(obsError.Code)
  14. fmt.Println(obsError.Message)
  15. } else {
  16. fmt.Println(err)
  17. }
  18. }
  19. }

父主题:对象相关接口