34 lines
712 B
Django/Jinja
34 lines
712 B
Django/Jinja
{
|
|
"client_id": "{{cfg_authelia_for_owncloud.desktop.client_id}}",
|
|
"client_secret": "{{temp_authelia_for_owncloud_desktop_client_secret_hashed.stdout}}",
|
|
"client_name": "ownCloud | Desktop Client",
|
|
|
|
"public": false,
|
|
"authorization_policy": "one_factor",
|
|
"require_pkce": true,
|
|
"pkce_challenge_method": "S256",
|
|
"scopes": [
|
|
"openid",
|
|
"offline_access",
|
|
"groups",
|
|
"profile",
|
|
"email"
|
|
],
|
|
"redirect_uris": [
|
|
"http://127.0.0.1",
|
|
"http://localhost"
|
|
|
|
|
|
],
|
|
"response_types": [
|
|
"code"
|
|
],
|
|
"grant_types": [
|
|
"authorization_code",
|
|
"refresh_token"
|
|
]
|
|
"access_token_signed_response_alg": "none",
|
|
"userinfo_signed_response_alg": "none",
|
|
"token_endpoint_auth_method": "client_secret_basic"
|
|
}
|