205 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
1
vote
0
answers
52
views
SignalR from JS Angular app to hub on .NET 8 server running in Azure reaching URL/QueryString length limits and getting 404.15 errors
I'm getting errors in the JS client (404), and an error on the server which states that it's probably a 404.15, which is query string too long).
Now, as far as I can ascertain, when using SignalR, the ...
0
votes
0
answers
112
views
using msal library on android with ionic and capacitor
when using the MSAL for Angular on Android with ionic and capacitor, the user is forced to login each time, when he is opening the application. Is there any way to store somehow user authentication ...
0
votes
1
answer
241
views
MSAL is initialized, but still getting error "BrowserAuthError: uninitialized_public_client_application"
I'm using MSAL in an Angular 19 standalone application and Azure ADB2C:
"@azure/msal-angular": "^4.0.6",
"@azure/msal-browser": "^4.7.0",
When authenticating ...
0
votes
1
answer
109
views
Srop account selection prompt screen when sign out msal-angular
I am using the latest MSAL libs "@azure/msal-angular": "^4.0.12","@azure/msal-browser": "^4.12.0",. But the logout is still asking for account selection.
Is ...
2
votes
1
answer
430
views
Entra External ID MSAL with Angular Error - AADSTS399266: Blob grant token received with wrong issuer type
So we have an app that need collaboration from different tenants, including Gmail and decided to go with the Entra External ID solution. My frontend app is using Angular v17. I'm following this demo ...
0
votes
2
answers
202
views
MSAL Angular cached login doesn't InteractionStatus progress beyond Startup
I'm having issues with the @azure/msal-angular v4 library. Currently I believe I have the MsalService and MsalBroadcastingService correctly configured and injected into my AppComponent.
The specific ...
0
votes
2
answers
472
views
Angular 19 @azure/msal-angular v4 B2C standalone MsalInterceptor not working
I am working on an Angular 19 project and am integrating @azure/msal-angular v4. I added the configuration from this standalone reference and this b2c reference and added the MsalGuard to my route. ...
1
vote
1
answer
2k
views
@azure/msal-angular v4 with Angular 19
I am building an Angular 19 application that I wish to use with MSAL. I tried to port my implementation of MSAL v2 from an older project into my new Angular 19 app and it wasn't behaving so I am ...
0
votes
0
answers
85
views
How to Access the Authorization Code When Using MSAL?
I'm trying out MSAL using a simple example app, and it works with my B2C setup. I'm using authorization code flow, and after a successful login the MSAL component immediately makes a call to the '...
0
votes
0
answers
105
views
Issue with BrowserAuthError: no_account_error in Angular Frontend App Using MSAL
I have a frontend application developed using Angular 18 that interacts with a backend API application developed using .NET 8 APIs. The backend API app is deployed across three different geos: AME, ...
0
votes
0
answers
104
views
MsalInterceptor is not setting the bearer token to the http requests made from the img, video, audio and pdf viewer control
I am developing an angular application in which I have integrated EntraID app for authentication and used the MsalInterceptor and configured the required providers as follows:
providers: [
{
...
2
votes
1
answer
2k
views
Can I use @azure/msal-angular v4 in angular v19?
I just noticed that @azure/msal-angular v4.0.1 has been out 13 days ago, and v4.0.2 5 days ago. Yet nowhere v4 is mentioned in the documentation. Only v3 and angular v18.
Does anyone know whether it's ...
0
votes
1
answer
618
views
MSAL Redirect on Failure AADSTS50105
I have an Angular App set up with MSAL (msal-angular 2.5.5). My app authenticates against an App Registration on Azure which has "Assignment Required" as true.
Ideally, I'd like it that if a ...
1
vote
0
answers
112
views
Why does @azure/msal is forcing users to log in even for routes that are not guarded?
Here's my routes. Any user can browse the list of products, go to the details page of a product without being logged in. Users need to log in only when accessing own listings page.
Here's my routes
...
0
votes
1
answer
252
views
MSAL V1.x how to update client id and authority dynamically (i am using angular 7)
I am using the @azure/msal-angular version ^1.1.2, and I am facing an issue on how to update the MsalModule dynamically
i am refering the code base https://github.com/AzureAD/microsoft-authentication-...