golang.org/x/oauth2/google.Credentials.JSON (field)

11 uses

	golang.org/x/oauth2/google (current package)
		default.go#L32: 	JSON []byte
		default.go#L136: 		JSON:        jsonData,

	google.golang.org/api/idtoken
		idtoken.go#L92: 	if len(creds.JSON) > 0 {
		idtoken.go#L93: 		return tokenSourceFromBytes(ctx, creds.JSON, audience, ds)

	google.golang.org/api/internal
		creds.go#L53: 	if len(cred.JSON) > 0 {
		creds.go#L54: 		return credentialsFromJSON(ctx, cred.JSON, ds.Endpoint, ds.Scopes, ds.Audiences)
		creds.go#L79: 		if err := json.Unmarshal(cred.JSON, &f); err != nil {
		creds.go#L113: 	if err := json.Unmarshal(cred.JSON, &v); err != nil {

	google.golang.org/grpc/credentials/oauth
		oauth.go#L190: 	if creds.JSON == nil {
		oauth.go#L213: 	if _, err := google.JWTConfigFromJSON(creds.JSON); err != nil {
		oauth.go#L220: 	return NewJWTAccessFromKey(creds.JSON)