This commit is contained in:
max furman 2019-12-02 19:11:27 -05:00
parent b25cbbe6ca
commit 7bfd43446a

View file

@ -122,7 +122,8 @@ func (p *JWK) authorizeToken(token string, audiences []string) (*jwtPayload, err
}
if claims.Subject == "" {
return nil, errors.New("token subject cannot be empty")
return nil, errors.Errorf("invalid token: invalid audience claim (aud); want %s, but got %s",
audiences, claims.Audience)
}
return &claims, nil