Last modified by Clément Aubin on 2024/03/25 00:08

<
From version < 25.8 >
edited by Thomas Mortagne
on 2019/03/26 17:01
To version < 26.1 >
edited by Thomas Mortagne
on 2019/03/26 18:32
>
Change comment: There is no comment for this version

Summary

Details

ExtensionCode.ExtensionClass[0]
Description
... ... @@ -34,6 +34,15 @@
34 34  # oidc.endpoint.token=https://xwikiorg-node1.xwikisas.com/xwiki/oidc/token
35 35  # oidc.endpoint.userinfo=https://xwikiorg-node1.xwikisas.com/xwiki/oidc/userinfo
36 36  
37 +#-# The method used to access the userinfo endpoint.
38 +#-#
39 +#-# Supported values are:
40 +#-# * GET: use GET HTTP method
41 +#-# * POST: use POST HTTP method
42 +#-#
43 +#-# The default is:
44 +# oidc.endpoint.userinfo.method=GET
45 +
37 37  #-# The pattern to use to generate the XWiki user name.
38 38  #-#
39 39  #-# The following variables are available:
... ... @@ -97,6 +97,19 @@
97 97  #-# The default is the identifier of the XWiki instance.
98 98  # oidc.clientid=
99 99  
109 +#-# The client secret (optionally) registered on the provider.
110 +#-# By default nothing is sent to the provider.
111 +# oidc.secret=
112 +
113 +#-# How to send the client id and secret.
114 +#-#
115 +#-# Supported values are:
116 +#-# * client_secret_basic: the id and the secret are sent using BASIC auth header
117 +#-# * client_secret_post: the id and the secret are sent in the the request body
118 +#-#
119 +#-# The default is:
120 +# oidc.endpoint.token.auth_method=client_secret_basic
121 +
100 100  #-# Receiving a groups list is enough to enable group synchronization but you might need to configure XWiki groups names different from the remote groups names.
101 101  #-#
102 102  # oidc.groups.mapping=MyXWikiGroup=my-oidc-group

Get Connected