MCPcopy
hub / github.com/ory/hydra / DefaultClient

Struct DefaultClient

fosite/client.go:81–91  ·  view source on GitHub ↗

DefaultClient is a simple default implementation of the Client interface.

Source from the content-addressed store, hash-verified

79
80// DefaultClient is a simple default implementation of the Client interface.
81type DefaultClient struct {
82 ID string `json:"id"`
83 Secret []byte `json:"client_secret,omitempty"`
84 RotatedSecrets [][]byte `json:"rotated_secrets,omitempty"`
85 RedirectURIs []string `json:"redirect_uris"`
86 GrantTypes []string `json:"grant_types"`
87 ResponseTypes []string `json:"response_types"`
88 Scopes []string `json:"scopes"`
89 Audience []string `json:"audience"`
90 Public bool `json:"public"`
91}
92
93type DefaultOpenIDConnectClient struct {
94 *DefaultClient

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected