We might get below error while trying to login to Power Apps
AADSTS50058: A silent sign-in request was sent but none of the currently signed-in user(s) match the requested login hint. Trace ID: b4c0c138-c2d9-46c8-999f-3d10414c2d00 Correlation ID: 60ab6eb7-bef1-44e1-8756-bdc33907e6ef Timestamp: 2020-07-03 19:11:01Z
Error AADSTS50058 is
UserInformationNotProvided – This means that a user is not signed in. This is a common error that’s expected when a user is unauthenticated and has not yet signed in.
If this error is encouraged in an SSO context where the user has previously signed in, this means that the SSO session was either not found or invalid.
This error may be returned to the application if prompt=none is specified.
https://docs.microsoft.com/en-us/azure/active-directory/develop/reference-aadsts-error-codes
Few solutions to this error are
- Try using InPrivate mode.
- Clearing the browser cache – which would force the user to enter the authentication information again, which then would get a new token.
After the cache is cleared or if we open it in incognito mode, the user is asked to enter the login in again.
And the user can log in to Power Apps successfully.
Check below links for more detail –
https://github.com/AzureAD/azure-activedirectory-library-for-js/issues/323
Hope it helps..
One thought on “Solved – AADSTS50058: A silent sign-in request was sent but none of the currently signed in user(s) match the requested login hint PowerApps”