kind: "OAuthClient"
apiVersion: "v1"
metadata:
name: "openshift-web-console" (1)
selflink: "/osapi/v1/oAuthClients/openshift-web-console"
resourceVersion: "1"
creationTimestamp: "2015-01-01T01:01:01Z"
respondWithChallenges: false (2)
secret: "45e27750-a8aa-11e4-b2ea-3c970e4b7ffe" (3)
redirectURIs:
- "https://localhost:8443" (4)
1 | The name is used as the client_id parameter in OAuth requests. |
2 | When respondWithChallenges is set to true , unauthenticated requests to
/oauth/authorize will result in WWW-Authenticate challenges, if supported by
the configured authentication methods. |
3 | The value in the secret parameter is used as the client_secret parameter
in an authorization code flow. |
4 | One or more absolute URIs can be placed in the redirectURIs section. The
redirect_uri parameter sent with authorization requests must be prefixed by
one of the specified redirectURIs . |