Versions in this module Expand all Collapse all v1 v1.5.1 Apr 23, 2018 Changes in this version + type Authenticator struct + func NewAuthenticator(id, secret, uaaAddr string, opts ...AuthenticatorOption) *Authenticator + func (a *Authenticator) CheckToken(token, scope string) bool + func (a *Authenticator) RefreshAuthToken() (string, error) + type AuthenticatorOption func(*Authenticator) + func WithHTTPClient(c HTTPClient) AuthenticatorOption + type HTTPClient interface + Do func(*http.Request) (*http.Response, error) + PostForm func(string, url.Values) (*http.Response, error)