Alfred Brockötter
Alfred Brockötter
@Prashanth-iNautix : Try to change scope.$digest(); to scope.$apply(); In my case this did the trick!
I am running into this bug as well! Is there a temporary workaround?
I'm still getting this error now end then: ``` Microsoft.Data.SqlClient.SqlException (0x80131904): Execution Timeout Expired. The timeout period elapsed prior to completion of the operation or the server is not responding....
Hi Guys, I just connected umbraco 10.0.1 with identity provider 4 (based on this page: https://our.umbraco.com/documentation/Reference/Security/auto-linking/) But unlinking a user is giving me an error as well: ``` Possibly unhandled...
@d-gibbs I'm running into the same issue as you have. So yesterday i cloned the umbraco-cms and did a deep dive on this issue. In my case it appeared that...
@d-gibbs Thanks for your reply! My issue, indeed, has to do with the way the IdentityProvider is configured. But the configuration of the identity provider is not always in your...
BTW: When we all agree on a solution i will be happy to create a pull request myself!
@bergmania Thanks for you reply! Mapping the claim types, the way you suggested, seems to work too! ``` options.ClaimActions.MapJsonKey(claimType: ClaimTypes.Email, jsonKey: "email"); ``` I also tried mapping the claimtypes but...
@bergmania Today a collegue of mine stept into the same issue, so i decided to create a new pull request. I've added just a simple fallback but it think this...
@Phil-Ouimet I had a slightly different scenario but maybe it can help you too. In the openid configuration, map the NameClaimType to the nameidentifier (instead of the email) ``` options.TokenValidationParameters.NameClaimType...