查看PDF

获取对象ACL

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

功能说明

获取指定桶中对象的访问权限。

方法定义

  1. func (obsClient ObsClient) GetObjectAcl(input *GetObjectAclInput) (output *GetObjectAclOutput, err error)

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

  1. func (obsClient ObsClient) GetObjectAclWithSignedUrl(signedUrl string, actualSignedRequestHeaders http.Header) (output *GetObjectAclOutput, err error)

请求参数


参数名

类型

约束

input

*GetObjectAclInput

必选

返回结果


参数名

类型

output

*GetObjectAclOutput

err

error

代码样例

  1. func main() {
  2. input := &obs.GetObjectAclInput{}
  3. input.Bucket = "bucketname"
  4. input.Key = "objectkey"
  5. output, err := obsClient.GetObjectAcl(input)
  6. if err == nil {
  7. fmt.Printf("RequestId:%s\n", output.RequestId)
  8. fmt.Printf("Owner.ID:%s\n", output.Owner.ID)
  9. for index, grant := range output.Grants {
  10. fmt.Printf("Grant[%d]-Type:%s, ID:%s, URI:%s, Permission:%s\n", index, grant.Grantee.Type, grant.Grantee.ID, grant.Grantee.URI, grant.Permission)
  11. }
  12. } else {
  13. if obsError, ok := err.(obs.ObsError); ok {
  14. fmt.Println(obsError.Code)
  15. fmt.Println(obsError.Message)
  16. } else {
  17. fmt.Println(err)
  18. }
  19. }
  20. }

父主题:对象相关接口