GetTrustDomain returns the current trust domain. If the default is used the empty string is returned
()
| 279 | // GetTrustDomain returns the current trust domain. If the default is used |
| 280 | // the empty string is returned |
| 281 | func (c *LiveClient) GetTrustDomain() (string, error) { |
| 282 | return c.getTrustDomain(MetaPath) |
| 283 | } |
| 284 | |
| 285 | func (c *LiveClient) getTrustDomain(url string) (string, error) { |
| 286 | var resp MetaResponse |