-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json
44 lines (44 loc) · 1 KB
/
config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"base_url": "https://127.0.0.1:8000",
"httpc_params": {
"verify": false
},
"clients": {
"oidc-test-client": {
"metadata": {
"client_id": "APP-579BA47A-20A9-44ED-BA65-C58F853F574D",
"redirect_uris": [
"https://127.0.0.1:8000/redirect"
]
},
"client_secret": "SQI8f71GYDcrUpcfuseHEQkuEqCi9wN5anH1n8Lporv6hglOhZrQligiMSAczP9Q",
"issuer": "https://proxy.aai.geant.org",
"usage": {
"scope": [
"openid",
"aarc"
]
},
"behaviour": {
"contacts": [
],
"response_types": [
"code"
],
"token_endpoint_auth_methods": [
"client_secret_post"
]
},
"add_ons": {
"pkce": {
"function": "idpyoidc.client.oauth2.add_on.pkce.add_support",
"kwargs": {
"code_challenge_length": 64,
"code_challenge_method": "S256"
}
}
}
}
}
}