Bump arnested/go-version-action from 2.1.1 to 2.1.2
Bumps arnested/go-version-action from 2.1.1 to 2.1.2.
updated-dependencies:
- dependency-name: arnested/go-version-action dependency-version: 2.1.2 dependency-type: direct:production update-type: version-update:semver-patch …
Signed-off-by: dependabot[bot] support@github.com
版权所有:中国计算机学会技术支持:开源发展技术委员会
京ICP备13000930号-9
京公网安备 11010802032778号
go-uaaOverview
go-uaais a client library for the UAA API. It is ago module.Usage
Step 1: Add
go-uaaAs A DependencyStep 2: Construct and Use
uaa.APIConstruct a
uaa.APIby usinguaa.New(target string, authOpt AuthenticationOption, opts ...Option):/oauth/tokensuffixuaa.WithClientCredentials(clientID string, clientSecret string, tokenFormat TokenFormat)uaa.WithPasswordCredentials(clientID string, clientSecret string, username string, password string, tokenFormat TokenFormat)uaa.WithAuthorizationCode(clientID string, clientSecret string, authorizationCode string, tokenFormat TokenFormat, redirectURL *url.URL)uaa.WithRefreshToken(clientID string, clientSecret string, refreshToken string, tokenFormat TokenFormat)uaa.WithToken(token *oauth2.Token)(this is the only authentication methods that cannot automatically refresh the token when it expires)uaa.WithZoneID(zoneID string)if you want to specify your own zone IDuaa.WithClient(client *http.Client)if you want to specify your ownhttp.Clientuaa.WithSkipSSLValidation(skipSSLValidation bool)if you want to ignore SSL validation issues; this is not recommended, and you should instead ensure you trust the certificate authority that issues the certificates used by UAAuaa.WithUserAgent(userAgent string)if you want to supply your own user agent for requests to the UAA APIuaa.WithVerbosity(verbose bool)if you want to enable verbose loggingExperimental
v0.x.yrangev1.x.yreleases occurgo moduleswith this packageContributing
Pull requests welcome.