GetAudience implements the Claims interface.
()
| 26 | |
| 27 | // GetAudience implements the Claims interface. |
| 28 | func (m MapClaims) GetAudience() (ClaimStrings, error) { |
| 29 | return m.parseClaimsString("aud") |
| 30 | } |
| 31 | |
| 32 | // GetIssuer implements the Claims interface. |
| 33 | func (m MapClaims) GetIssuer() (string, error) { |
nothing calls this directly
no test coverage detected