Previously, the Configuration object kept track of Callback URIs as Strings.
The correct type is URL, and upon the process of making changes to authenticators I decided to change this to URL across the board to reduce the need to convert between the two types.
We also change the useFallback parameter to default false, as this parameter is only used to fall back to the Authorization Code flow. Since the end developer needs to set up a server to use Authorization Code flow, we make that usage opt-in.
Previously, the Configuration object kept track of Callback URIs as Strings.
The correct type is
URL
, and upon the process of making changes to authenticators I decided to change this toURL
across the board to reduce the need to convert between the two types.We also change the
useFallback
parameter to default false, as this parameter is only used to fall back to the Authorization Code flow. Since the end developer needs to set up a server to use Authorization Code flow, we make that usage opt-in.