# HG changeset patch # User Kim Alvefur # Date 1682767593 -7200 # Node ID 6f13200c9fc18e0fda4a8b58914a4e8a0cd5d1bd # Parent 544b92750a2a06bfc773f6adebc51466d0087b20 mod_http_oauth2: Advertise required registration of redirect URIs Specified in OpenID Connect Discovery 1.0 Seems important to be aware of when registering a client. diff -r 544b92750a2a -r 6f13200c9fc1 mod_http_oauth2/mod_http_oauth2.lua --- a/mod_http_oauth2/mod_http_oauth2.lua Sat Apr 29 13:23:30 2023 +0200 +++ b/mod_http_oauth2/mod_http_oauth2.lua Sat Apr 29 13:26:33 2023 +0200 @@ -953,6 +953,7 @@ -- OpenID userinfo_endpoint = handle_register_request and module:http_url() .. "/userinfo" or nil; + require_request_uri_registration = true; }; }; };