type golang.org/x/oauth2/internal.AuthStyle

11 uses

	golang.org/x/oauth2/internal (current package)
		token.go#L106: type AuthStyle int
		token.go#L109: 	AuthStyleUnknown  AuthStyle = 0
		token.go#L110: 	AuthStyleInParams AuthStyle = 1
		token.go#L111: 	AuthStyleInHeader AuthStyle = 2
		token.go#L121: 	m map[string]AuthStyle // keyed by tokenURL
		token.go#L134: func lookupAuthStyle(tokenURL string) (style AuthStyle, ok bool) {
		token.go#L142: func setAuthStyle(tokenURL string, v AuthStyle) {
		token.go#L146: 		authStyleCache.m = make(map[string]AuthStyle)
		token.go#L159: func newTokenRequest(tokenURL, clientID, clientSecret string, v url.Values, authStyle AuthStyle) (*http.Request, error) {
		token.go#L188: func RetrieveToken(ctx context.Context, clientID, clientSecret, tokenURL string, v url.Values, authStyle AuthStyle) (*Token, error) {

	golang.org/x/oauth2
		token.go#L157: 	tk, err := internal.RetrieveToken(ctx, c.ClientID, c.ClientSecret, c.Endpoint.TokenURL, v, internal.AuthStyle(c.Endpoint.AuthStyle))