authority property

String? authority

Implementation

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

URL of the authority, the security token service (STS) from which MSAL will acquire tokens.

If using the same authority for all request, authority should set on client application object and not request, to avoid resolving authority endpoints multiple times.

Defaults to https://login.microsoftonline.com/common.

Implementation

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