Authentication method by which the user authenticated with the service doesn't match requested auth

Whenever you suddenly get an error with Single Sign On related to the authentication method Password Protected does not match the .... with Microsoft please follow this link:

https://learn.microsoft.com/en-us/troubleshoot/azure/active-directory/error-code-aadsts75011-auth-method-mismatcharrow-up-right

Solution 1:

Logout from your Edge browser and login again to reset the user profile in the browser.

Solution 2:

Set the requestedAuthnContext to false by adding the following lines to your wbe.config.yaml:

writeback-extreme:
  env:
    # ..other environment variables
    portal:
      saml:
        xml_validation: true
        requested_auth: false

Note: Environment variables defined in the config will be automatically be uppercased when starting the application.

Last updated

Was this helpful?