ansible-base/roles/authelia-for-owncloud/templates/authelia-client-conf-ios.json.j2

34 lines
713 B
Plaintext
Raw Normal View History

{
2025-10-07 14:35:48 +02:00
"client_id": "{{cfg_authelia_for_owncloud.ios.client_id}}",
2024-10-26 10:31:15 +02:00
"client_secret": "{{temp_authelia_for_owncloud_ios_client_secret_hashed.stdout}}",
2024-07-02 00:11:22 +02:00
"client_name": "ownCloud | iOS Client",
2025-10-07 14:35:48 +02:00
"public": false,
"authorization_policy": "one_factor",
2025-10-07 14:35:48 +02:00
"require_pkce": true,
"pkce_challenge_method": "S256",
"scopes": [
"openid",
2025-10-07 14:35:48 +02:00
"offline_access",
"groups",
"profile",
2025-10-07 14:35:48 +02:00
"email"
],
"redirect_uris": [
"oc://ios.owncloud.com",
"oc.ios://ios.owncloud.com"
2025-10-07 14:35:48 +02:00
],
"response_types": [
"code"
],
"grant_types": [
"authorization_code",
"refresh_token"
]
2025-10-07 14:35:48 +02:00
"access_token_signed_response_alg": "none",
"userinfo_signed_response_alg": "none",
"token_endpoint_auth_method": "client_secret_basic"
}