diff --git a/src/client/Microsoft.Identity.Client.Broker/WamAdapters.cs b/src/client/Microsoft.Identity.Client.Broker/WamAdapters.cs index 6dbb932d13..d3ccc95b5f 100644 --- a/src/client/Microsoft.Identity.Client.Broker/WamAdapters.cs +++ b/src/client/Microsoft.Identity.Client.Broker/WamAdapters.cs @@ -90,10 +90,8 @@ private static MsalException CreateExceptionFromWamError( $" Error Code: {errorCode} \n" + $" Error Message: {authResult.Error.Status} \n" + $" WAM Error Message: {authResult.Error.Context} \n" + - $" Internal Error Code: {internalErrorCode} \n" + - $" Possible causes: \n" + - $"- Invalid redirect uri - ensure you have configured the following url in the application registration in Azure Portal: " + - $"{GetExpectedRedirectUri(authenticationRequestParameters.AppConfig.ClientId)} \n"; + $" Internal Error Code: {internalErrorCode} \n" + + $" See troubleshooting: https://aka.ms/msal-net-wam \n"; logger.Error($"[RuntimeBroker] WAM_provider_error_{errorCode} {errorMessage}"); serviceException = new MsalServiceException($"WAM_provider_error_{errorCode}", errorMessage); serviceException.IsRetryable = false;