19 lines
518 B
JSON
19 lines
518 B
JSON
|
{
|
||
|
"client_id": "oidc-test",
|
||
|
"client_name": "OIDC Test",
|
||
|
"client_secret": "oidc-test-123456",
|
||
|
"grant_types": [
|
||
|
"authorization_code",
|
||
|
"refresh_token"
|
||
|
],
|
||
|
"jwks": {},
|
||
|
"metadata": {},
|
||
|
"token_endpoint_auth_method": "client_secret_post",
|
||
|
"post_logout_redirect_uris": ["http://localhost:8000"],
|
||
|
"redirect_uris": ["http://localhost:8000/oauth2/callback"],
|
||
|
"response_types": [
|
||
|
"code"
|
||
|
],
|
||
|
"logo_uri": "https://upload.wikimedia.org/wikipedia/commons/e/e1/Password.svg",
|
||
|
"scope": "openid profile email webhook"
|
||
|
}
|