Hi,
I am created a Tauri Desktop Application along with JMIX Rest API. As i want to do PKCE oAuth2 authentication with JMIX2. So, i want to have multiple redirect URI. As i see we can add multiple URI in the configuration,
spring.security.oauth2.authorizationserver.client.myclient.registration.redirect-uris=http://127.0.0.1:9133/callback
But i will have thousands of dynamic Redirect URIs (each for a desktop application instance).
So, How to configure and use the Redirect URI from the oAuth2 request as like in the oauthdebugger example.
It redirect only if we specify the URI in the spring configuration file(application.properties). If this Redirect URI is not specified in the spring configuration, i am getting BadRequest error with status=400 while doing authentication.
Thanks in advance.