You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Public and confidential clients send redundant discovery requests because silent and non-silent (audible? 😛) authentication request and cache discovery metadata independently. For example, AcquireTokenOnBehalfOf
first attempts silent authentication, which requests instance metadata and caches it with storage.Manager. When silent auth fails, it then requests a token from the STS via oauth.Client, which requests instance and tenant metadata and caches it on an instance of oauth.authorityEndpoint.
The text was updated successfully, but these errors were encountered:
Public and confidential clients send redundant discovery requests because silent and non-silent (audible? 😛) authentication request and cache discovery metadata independently. For example,
AcquireTokenOnBehalfOf
first attempts silent authentication, which requests instance metadata and caches it with
storage.Manager
. When silent auth fails, it then requests a token from the STS viaoauth.Client
, which requests instance and tenant metadata and caches it on an instance ofoauth.authorityEndpoint
.The text was updated successfully, but these errors were encountered: