atomicfraser
Results
2
comments of
atomicfraser
@paulcociuba > The registration of the **BaseAddressAuthorizationMessageHandler** class through the call of the **AddHttpMessageHandler** extension handler is all you need to append the needed token to access the API, and...
I created another `HttpMessageHandler` which wraps `AuthorizationMessageHandler` and gracefully handles `AccessTokenNotAvailableException` by refreshing the session via a popup: ``` public class RedirectingAuthorizationMessageHandler : DelegatingHandler { private static readonly SemaphoreSlim LoginSemaphore...