Thomas Norling
Thomas Norling
Does it work after redirecting to AAD and providing consent? Generally speaking, when you receive an interaction_required error it means the server requires some more information from the user to...
> For the first time when login() is called it is redirected to AAD and gets the token back. We are calling LoginSilent() after 50mins(before 10 mins of token expire)...
Thanks for the report. I'm only able to reproduce this on localhost, which appears consistent with the intended target of this change. Is anybody experiencing this on a deployed, public...
Gotcha, it looks like to handle this we'll need to [add an attribute to the iframe](https://docs.google.com/document/d/1QQkqehw8umtAgz5z0um7THx-aoU251p705FbIQjDuGs/edit?tab=t.0#heading=h.denb9idl4lm0) we create: `allow local-network-access *`. Note that this will still require the user to...
[Released in 4.26.1](https://github.com/AzureAD/microsoft-authentication-library-for-js/releases/tag/msal-browser-v4.26.1) Please let me know if you continue to have issues with this in the new build.
@fejbl2 That is a different issue than what is being discussed in this thread. Please open a new issue for that one. Also in the future please make sure to...
You've set `navigateToLoginRequestUrl` config param to false which disables the behavior you're looking for. Either remove this config (default is true) or explicitly set it to true.
Closing as function no longer exists
This behavior is happening because you're invoking loginPopup/Redirect on your redirectUri page, resulting in loops (for redirect) or popups attempting to open more popups. For popups the guidance is to...
Closing in favor of #7735