본문으로 건너뛰기

OIDCClientCreate

OIDC client creation request. For confidential clients, the server generates a client_secret and returns the plaintext value once via OIDCClientSecretResponse.

client_idClient Id (string)필수
nameName (string)필수
description object
하나 이상(anyOf)
string
client_typeClient Type (string)

Possible values: [public, confidential]

기본값: public
grant_typesstring[]

Possible values: [authorization_code, client_credentials]

redirect_urisstring[]
require_pkceRequire Pkce (boolean)
기본값: true
allow_refreshAllow Refresh (boolean)
기본값: true
allowed_audiencesstring[]
OIDCClientCreate
{
"client_id": "string",
"name": "string",
"description": "string",
"client_type": "public",
"grant_types": [
"authorization_code"
],
"redirect_uris": [
"string"
],
"require_pkce": true,
"allow_refresh": true,
"allowed_audiences": [
"string"
]
}