oracle / ojdbc-extensions

The Oracle JDBC Driver Extensions include providers for centralized configuration or token providers for authentication with the DB.
Universal Permissive License v1.0
13 stars 5 forks source link

Redirect URI is Optional #56

Closed Michael-A-McMahon closed 9 months ago

Michael-A-McMahon commented 9 months ago

This branch changes the redirect URI parameter for interactive authentication with Azure. The parameter is now optional. If users do not configure this parameter, the Azure SDK for Java will use a localhost URL having any available port number in the ephemeral range. For example, the SDK might use http://localhost:52741.

This change eases the burden of configuration for our users. They will no longer need to configure a redirect URI, on top of all the other configurable values. Users only need to add a localhost URI in their Azure App Registration, and it will match with a localhost URI having any port number used by clients (https://learn.microsoft.com/en-us/entra/identity-platform/reply-url#localhost-exceptions)