jadjare
jadjare
@jmprieur : I had a filter on to handle the AuthorizeForScopesAttribute site wide ``` public class DefaultAuthorizeForScopeFilter: AuthorizeForScopesAttribute { public DefaultAuthorizeForScopeFilter(string[] scopes) => base.Scopes = scopes; } ``` and in...
> @jadjare What do you mean by "invalidating the token"? @jennyf19 By "invalidating the token" I mean taking an action that causes a request for an Access Token to be...
> 1. A Regular ASP.Net Core Web App in AAD. In a returned View, have sections that have Js/Jquery calls to an Action to bring back some Json to update...
@djmx38 I've been temporarily moved onto some other work, so not looked into this much further. Interesting that you found that old article pointing out the exact same problem years...
I'm mid work-project at the moment and hit this issue. I needed to get the behavior fixed, so I have been digging around. Having investigated the cause it seems to...
I ran into the same problem and overcome it by making a my own `post` request, in my case by using the Axios library. I needed to check if a...