Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
16 views

I'm using Blazor WebAssembly with MSAL for authentication and storing Azure AD B2C credentials in localStorage. My setup is roughly like this: builder.Services.AddMsalAuthentication(options =&...
khalil hajri's user avatar
0 votes
0 answers
35 views

We have developed a Blazor Web Assembly App (WASM) that uses the standard Microsoft.AspNetCore.Components.WebAssembly.Authentication library to handle Authentication { options.ProviderOptions....
Naish O'Loughlin's user avatar
0 votes
0 answers
41 views

I'm probably misunderstanding this, but after many days I need to ask for help. I created an AppRegistration for my Web application (Blazor wasm) and then I created another AppRegistration for my API ...
RePinheiro's user avatar
1 vote
1 answer
124 views

I'm setting up SSO behaviors across multiple modules of a web platform using Azure AD B2C Custom Policies as the identity layer. The modules are React apps served from different subdomains under a ...
Clement Germain's user avatar
0 votes
0 answers
38 views

I'm working on a Blazor WebAssembly app that uses MSAL package Microsoft.Authentication.WebAssembly.Msal version 8.0.13 for authentication. I configured the MSAL cache to use localStorage by setting ...
Javier Latorre Pérez's user avatar
0 votes
1 answer
157 views

I’ve implemented a piece of code where I first generate a token, store it in localStorage, and then retrieve it from there in my fetch utility for backend API calls. However, no matter how many times ...
Profer's user avatar
  • 669
0 votes
0 answers
57 views

I have implemented NAA using the link (https://learn.microsoft.com/en-us/office/dev/add-ins/develop/enable-nested-app-authentication-in-your-add-in) with the below code using the MSAL library version ...
VIDYA RAGHAVI E's user avatar
0 votes
1 answer
86 views

I'm having trouble getting a Magic Link to work in ADB2C. I have a React web application using the MSAL library authenticating against Azure ADB2C with custom policies. The default sign in policy is ...
bkingsley's user avatar
1 vote
1 answer
2k views

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 ...
afriedman111's user avatar
  • 2,451
0 votes
1 answer
1k views

I'm getting BrowserAuthError: monitor_window_timeout: Token acquisition in iframe failed due to timeout. I think it is happening as a result of calling ssoSilent but, I have no idea why is it ...
Amirmasoud's user avatar
0 votes
1 answer
326 views

I use @azure/msal-browser in my project. Account information are stored in the local storage and they were exploitable until recently. But it changed in their v4 release: if you are using the ...
fservantdev's user avatar
0 votes
0 answers
42 views

I don't know if this is a bug or not. The following order of method calls are not working: //refresh page addEventCallback(); initialize(); getActiveAccount(); getAllAccounts(); loginRedirect(); and ...
gyozo kudor's user avatar
  • 6,374
2 votes
1 answer
600 views

I am experiencing a persistent issue when attempting to send emails via SMTP using Microsoft Exchange Online in a NodeJS application. The authentication process appears to be successful, but email ...
Renato Rocha's user avatar
0 votes
1 answer
398 views

I've been trying to create a custom policy in Azure B2C that is capable of capturing a parameter sent by my Blazor application at the time of /authorize. I'll explain better: I created a Blazor Web ...
RePinheiro's user avatar
1 vote
0 answers
161 views

I'm using NAA(Nested App Authentication) MSAL.js in my outlook desktop client to handle authentication with Azure AD, and I'm encountering an issue with refreshing the identity token. Note: It is ...
Gyanendra Chaudhary's user avatar
0 votes
1 answer
149 views

Is there a standard practice for MSAL auth when using a separate frontend/backend lagnuage? Should I have both a Public and ConfidentialClient, or just one? I'm confusing myself after reading the docs ...
TheSlant's user avatar
-2 votes
1 answer
369 views

I have an application with a NodeJS backend and a React frontend, and I want to implement Azure SSO for it. Since the frontend is served by the backend, users who want to log in to the application are ...
osmnfdrcn's user avatar
0 votes
1 answer
329 views

Functionality: ReactJS MSAL SSO login, logout, refresh token and redirect to login page once token has expired. Issue: Unable to redirect to login if the token has expired (using MSAL SSO for ReactJS)....
F-Developer's user avatar
0 votes
1 answer
132 views

I deploy a react application to an Azure static web app. My authentication works via msal with following config: export const msalConfig = { auth: { clientId: "XXXXXXXXX", ...
Sander Hilven's user avatar
0 votes
1 answer
315 views

I want to implement SSO accross multiple apps. My requirement is that we will login in one app and switch between different apps withoout having to login again. App 1- React Spa App 2 - .Net based. I ...
Rashmi936's user avatar
0 votes
1 answer
774 views

We are building multiple web applications that use Azure B2C user flows for authentication. They are hosted on our servers within the same domain, but different subdomains to differentiate them. The ...
user25230787's user avatar
0 votes
1 answer
118 views

I have been trying to call the azure resource manager api to get a list of the resources in a subscription but as soon as I call the method , it gives me an error and the user isn't able to ...
p0stdelay's user avatar
0 votes
1 answer
506 views

I am trying to use MSAL library by Microsoft in my react js project. We have done the app registration for both front-end(react js) and backend(api). Currently, I am testing this in my local machine ...
Bubbles's user avatar
  • 11
0 votes
1 answer
268 views

I'm new to MSAL and working on an Office js react add-in, which will be free to download and use with 'basic' features and require a subscription for 'pro' features. The subscription-purchase workflow ...
S Bullen's user avatar
1 vote
1 answer
2k views

I have the following situation on Chrome: Package: @azure/msal-browser 2.16.1 Code: try { authResult = await installerMsal.loginPopup({ scopes: ..., prompt: 'consent' }); } catch (err) { .....
Arthur Borba's user avatar

1
2 3 4 5
11