Is it possible to have a regex in Oauth2 client re...
# ory-selfhosting
c
Is it possible to have a regex in Oauth2 client redirect_uri? I have many applications hosted in the same domain and looking to create one client for all of them.
redirect_uri: https://*.<http://example.com|example.com>
d
Hi @cold-scientist-93808, as specified in https://datatracker.ietf.org/doc/html/rfc6749#section-3.1.2 the redirect_uri must be an absolute URI.
c
Thank you 🙏