Home | History | Annotate | Download | only in oauth2

Lines Matching refs:TokenType

35 	// TokenType is the type of token.
37 TokenType string `json:"token_type,omitempty"`
56 // Type returns t.TokenType if non-empty, else "Bearer".
58 if strings.EqualFold(t.TokenType, "bearer") {
61 if strings.EqualFold(t.TokenType, "mac") {
64 if strings.EqualFold(t.TokenType, "basic") {
67 if t.TokenType != "" {
68 return t.TokenType
142 TokenType: t.TokenType,