redirectUri property

String? redirectUri

Implementation

String? get redirectUri => _jsObject.redirectUri;
void redirectUri=(String? value)

The redirect URI where authentication responses can be received by your application.

It must exactly match one of the redirect URIs registered in the Azure portal. Whatever location is specified here must have the MSAL library available to handle the response.

Defaults to window.location.href.

Implementation

set redirectUri(String? value) => _jsObject.redirectUri = value;