Aliyun.Oss.Object.Tagging.get

You're seeing just the function get, go back to Aliyun.Oss.Object.Tagging module for more information.
Link to this function

get(bucket, object)

Specs

get(String.t(), String.t()) ::
  {:error, error()} | {:ok, Aliyun.Oss.Client.Response.t()}

通过GetObjectTagging接口获取对象的标签信息。

Examples

iex> Aliyun.Oss.Object.Tagging.get("some-bucket", "some-object")
{:ok, %Aliyun.Oss.Client.Response{
    data: %{"Tagging" => %{"TagSet" => [%{"Key" => "key", "Value" => "value"}]}},
    headers: [
      {"Server", "AliyunOSS"},
      {"Date", "Fri, 01 Mar 2019 06:26:07 GMT"},
      {"Content-Type", "text/plain"},
      {"Content-Length", "0"},
      {"Connection", "keep-alive"},
      {"x-oss-request-id", "5C7000000000000000000000"},
      {"Last-Modified", "Fri, 01 Mar 2019 06:23:13 GMT"},
      {"ETag", ""6751C000000000000000000000000000""},
      {"x-oss-symlink-target", "test.txt"},
      {"x-oss-server-time", "1"}
    ]
  }
}