You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-- o If token_endpoint_auth_method is set to "client_secret_basic", "client_secret_post", or "client_secret_jwt", authentication to Token endpoint is using client_id and client_secret
126
+
-- For non compliant OPs to OAuth 2.0 RFC 6749 for client Authentication (cf. https://tools.ietf.org/html/rfc6749#section-2.3.1)
127
+
-- client_id and client_secret MUST be invariant when url encoded
123
128
client_id = "<client_id>",
124
129
client_secret = "<client_secret>",
125
-
130
+
-- o If token_endpoint_auth_method is set to "private_key_jwt" authentication to Token endpoint is using client_id, client_rsa_private_key and client_rsa_private_key_id to compute a signed JWT
131
+
-- client_rsa_private_key is the RSA private key to be used to sign the JWT generated by lua-resty-openidc for authentication to the OP
132
+
-- client_rsa_private_key_id (optional) is the key id to be set in the JWT header to identify which public key the OP shall use to verify the JWT signature
-- Life duration expressed in seconds of the signed JWT generated by lua-resty-openidc for authentication to the OP.
141
+
-- (used when token_endpoint_auth_method is set to "private_key_jwt" or "client_secret_jwt" authentication). Default is 60 seconds.
142
+
--client_jwt_assertion_expires_in = 60,
143
+
-- When using https to any OP endpoints, enforcement of SSL certificate check can be mandated ("yes") or not ("no").
144
+
--ssl_verify = "no",
145
+
126
146
--authorization_params = { hd="zmartzone.eu" },
127
147
--scope = "openid email profile",
128
148
-- Refresh the users id_token after 900 seconds without requiring re-authentication
@@ -136,8 +156,6 @@ http {
136
156
-- Whether the redirection after logout should include the id token as an hint (if available). This option is used only if redirect_after_logout_uri is set.
-- Where does the RP requests that the OP redirects the user after logout. If this option is set to a relative URI, it will be relative to the OP's logout endpoint, not the RP's.
0 commit comments