in apps.go [195:207]
func (c *Client) GetAppTag(appID, tagID string) (*AppTag, error) {
resp, err := c.request(http.MethodGet, fmt.Sprintf("/apps/%s/tags/%s", url.PathEscape(appID), url.PathEscape(tagID)), "application/json", nil)
if err != nil {
return nil, err
}
defer resp.Close()
var tag *AppTag
decoder := json.NewDecoder(resp)
err = decoder.Decode(&tag)
return tag, err
}