[ad_1]
I am using B2c with an Angular application hosted in Azure Storage Static Website and an Angular functions application.
Using the code below I can see that I appear to be logged in. Where isLoggedIn = true.
await this.msalInstance.handleRedirectPromise();
let isLoggedIn = this.authService.instance.getAllAccounts().length > 0;
However, as soon as I make a web call I get redirected to the redirection URL of my app (the login screen is not shown).
I was hoping someone might have an idea of how I could troubleshoot this, either by exposing more logs or different configurations I might look at that could cause this behavior.
[ad_2]