-
Notifications
You must be signed in to change notification settings - Fork 2.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Keep me signed in not working angular13 #6268
Comments
I was not able to paste the full error logs so here is the complete error logs: |
@joserhonFA The RT issued for MSAL JS is typically valid for 24 hrs which I see is reflected in your app's behavior. If you select KMSI, it is expected that the RT can be renewed offline, as long as the session is kept active on the service end. Looks like in this case, the silent call is failing. We provision folks to set up a cacheLookupPolicy that will make a network call silently to be able to keep the session hydrated. Can you please check the docs on token lifetimes and please apply the policy as needed? |
@sameerag thanks for your reply. So if I'm understanding that correctly, the msal interceptor doesn't handle that by default. I need to check if the silent call fails after 24 hours and then call the acquireTokenSilent() with the correct cacheLookupPolicy to be able to refresh the refresh token? |
This issue requires attention from the MSAL.js team and has not seen activity in 5 days. @hectormmg please follow up. |
@joserhonFA the defaut tcache lookup policy does what @sameerag described above. It will attempt to renew the expired refresh token silently if the session is still alive and MSAL has enough session data (loginHint or sid which are obtained from the ID token) to make the request silently. However, if the session is terminated (doesn't exist at the time of the request) or the session data is unavailable (because the ID token claims sid or loginHint aren't enabled), that request will fail and MSAL will throw an InteractionRequired error, which your application has to catch and call an interactive API (have the user log in again). |
@hectormmg but in my case the request is failing after 24 hours when the refresh token expired. I am able to see that there is an account in the msal instance, but I don't understand why the refresh token is not being refreshed and I don't think the session is terminated. |
@joserhonFA please look at the docs on SSO for more information. |
@hectormmg I set up the loginHint in the request but I get an error: ServerError: server_error: AADB2C: Invalid input: The email field is required.
instrument.js:107 |
First of all, you should only use ssoSilent if you do not already have an account object. Use acquireTokenSilent for most cases as this will utilize cache and refresh token. As for the error when you expect the session is still valid - Is your browser blocking 3P cookies? It's unfortunately one of the downsides of the ssoSilent flow (and the last leg of acquireTokenSilent when the RT is expired). With more and more browsers starting to block 3P cookies by default we expect ssoSilent to become less and less successful |
@tnorling I added the ssoSilent call after @hectormmg said I should use that.
That call is correctly placed when the Event ACQUIRE_TOKEN_FAILURE occurs? |
Apologies for the confusion.
acquireTokenSilent will invoke ssoSilent under the hood, if needed. Invoking ssoSilent (or acquireTokenSilent for that matter) again on a failure is redundant and not expected to succeed.
The request object is fine, though it's usually better to pass the entire account if you have it rather than loginHint i.e. const request = {
scopes: ['scope_url'],
account: this.activeAccount
}
If 3P cookies are blocked, ssoSilent will fail 100% of the time. acquireTokenSilent will still be able to retrieve tokens from the cache and exchange a refresh token for new access tokens, but as soon as the refresh token expires (24 hrs) you will need to invoke interaction again. |
@tnorling thanks for the clarification and quick response.
When you say I need to invoke interaction again it means that the user has to login again, entering credentials even if they checked they checked the Keep Me Signed In box? |
The MSALInterceptor invokes acquireTokenSilent under the hood. You do not need to invoke it directly if you are using the interceptor.
Whether the user needs to interact with the page or not and what sort of interaction they need to provide is decided by the STS based on a number of factors, including but not limited, to KMSI. In an ideal scenario, yes, the redirect can complete without requiring the user to re-enter their credentials, but it is never guaranteed. |
@tnorling I see what you mean and I appreciate all the clarifications you have provided, but now I'm kind of back to the beginning of my initial question here. Because I have the KMSI option activated in b2C and when I log in I can see that the cookie expiration date is after 3 days (that's the time I set up in b2c). So I'm not sure what needs to happen in order to make this work. After the refresh token is expired I'm always redirected to the login page no matter what and I have to re enter their credentials. |
Unfortunately, that's a question the MSAL.js team is not going to be able to answer. Like I said before, whether you are prompted for credentials depends on many factors, KMSI on its own does not guarantee you will be able to sign back in silently. You can open a support ticket with B2C and they should be able to help you figure out which condition is causing the re-auth. They will likely need a network trace so have that ready to go to expedite the process. |
thanks @tnorling I appreciate your help. I'll do that |
Can you link the ticket with Azure B2C here? I'm having a similar issue. |
@BrandonSchreck you can find the ticket here (https://learn.microsoft.com/en-us/answers/questions/1346866/ad-b2c-keep-me-signed-in-not-working?comment=answer-1302254&page=1#comment-1353510), although it was not helpful. My issue was solved after I switched to use custom policies because the email was not being passed to my api connector when refreshing the refresh token. |
Core Library
MSAL.js (@azure/msal-browser)
Core Library Version
2.26.0
Wrapper Library
MSAL Angular (@azure/msal-angular)
Wrapper Library Version
2.3.2
Public or Confidential Client?
Public
Description
I am using Angular 13 and I have the keep me signed in option activated in my B2C User flow
But for some reason it is not working and after the refresh token is expired after 24 hours, the app is not keeping the user signed in.
As an additional note, I have only tried on my localhost. I haven't tried in a deployed environment.
Also, I am able to see the x-ms-cpim-sso cookie with an expiration of 3 days after I sign in when I check the keep me signed in checkbox at the moment I sign in.
The token request fails with a 400 error and I get the following response:
error: "invalid_grant"
error_description: "AADB2C90080: The provided grant has expired. Please re-authenticate and try again. Current time: 1690384873, Grant issued time: 1690382095, Grant expiration time: 1690384441\r\nCorrelation ID: a579bbf3-6d39-4263-b1f5-dc45ead042ef\r\nTimestamp: 2023-07-26 15:21:13Z\r\n"
Error Message
@azure/msal-angular@2.3.3 : Error - Interceptor - acquireTokenSilent rejected with error. Invoking interaction to resolve.
(anonymous) @ localhost:4200/vendor.js:31061
loggerCallback @ localhost:4200/main.js:485
Logger.executeCallback @ localhost:4200/vendor.js:16750
Logger.logMessage @ localhost:4200/vendor.js:16743
Logger.error @ localhost:4200/vendor.js:16757
(anonymous) @ localhost:4200/vendor.js:407
(anonymous) @ localhost:4200/vendor.js:40997
OperatorSubscriber._error @ localhost:4200/vendor.js:40860
error @ localhost:4200/vendor.js:39772
(anonymous) @ localhost:4200/vendor.js:40603
invoke @ localhost:4200/polyfills.js:3487
onInvoke @ localhost:4200/vendor.js:111144
invoke @ localhost:4200/polyfills.js:3486
run @ localhost:4200/polyfills.js:3249
(anonymous) @ localhost:4200/polyfills.js:4390
invokeTask @ localhost:4200/polyfills.js:3521
onInvokeTask @ localhost:4200/vendor.js:111131
invokeTask @ localhost:4200/polyfills.js:3520
runTask @ localhost:4200/polyfills.js:3293
drainMicroTaskQueue @ localhost:4200/polyfills.js:3700
invokeTask @ localhost:4200/polyfills.js:3606
ZoneTask.invoke @ localhost:4200/polyfills.js:3591
data.args. @ localhost:4200/polyfills.js:5473
setInterval (async)
scheduleTask @ localhost:4200/polyfills.js:5475
scheduleTask @ localhost:4200/polyfills.js:3508
onScheduleTask @ localhost:4200/polyfills.js:3398
scheduleTask @ localhost:4200/polyfills.js:3501
scheduleTask @ localhost:4200/polyfills.js:3336
scheduleMacroTask @ localhost:4200/polyfills.js:3359
scheduleMacroTaskWithCurrentZone @ localhost:4200/polyfills.js:3798
(anonymous) @ localhost:4200/polyfills.js:5517
proto. @ localhost:4200/polyfills.js:4088
(anonymous) @ localhost:4200/vendor.js:22089
(anonymous) @ localhost:4200/vendor.js:9533
ZoneAwarePromise @ localhost:4200/polyfills.js:4542
SilentHandler.monitorIframeForHash @ localhost:4200/vendor.js:9523
(anonymous) @ localhost:4200/vendor.js:8639
step @ localhost:4200/vendor.js:804
(anonymous) @ localhost:4200/vendor.js:785
fulfilled @ localhost:4200/vendor.js:775
invoke @ localhost:4200/polyfills.js:3487
onInvoke @ localhost:4200/vendor.js:111144
invoke @ localhost:4200/polyfills.js:3486
run @ localhost:4200/polyfills.js:3249
(anonymous) @ localhost:4200/polyfills.js:4390
invokeTask @ localhost:4200/polyfills.js:3521
onInvokeTask @ localhost:4200/vendor.js:111131
invokeTask @ localhost:4200/polyfills.js:3520
runTask @ localhost:4200/polyfills.js:3293
drainMicroTaskQueue @ localhost:4200/polyfills.js:3700
Promise.then (async)
nativeScheduleMicroTask @ localhost:4200/polyfills.js:3676
scheduleMicroTask @ localhost:4200/polyfills.js:3687
scheduleTask @ localhost:4200/polyfills.js:3511
onScheduleTask @ localhost:4200/polyfills.js:3398
scheduleTask @ localhost:4200/polyfills.js:3501
scheduleTask @ localhost:4200/polyfills.js:3336
scheduleMicroTask @ localhost:4200/polyfills.js:3356
scheduleResolveOrReject @ localhost:4200/polyfills.js:4380
resolvePromise @ localhost:4200/polyfills.js:4317
(anonymous) @ localhost:4200/polyfills.js:4233
Promise.then (async)
(anonymous) @ localhost:4200/polyfills.js:4611
ZoneAwarePromise @ localhost:4200/polyfills.js:4542
Ctor.then @ localhost:4200/polyfills.js:4610
resolvePromise @ localhost:4200/polyfills.js:4284
(anonymous) @ localhost:4200/polyfills.js:4233
step @ localhost:4200/vendor.js:777
(anonymous) @ localhost:4200/vendor.js:778
ZoneAwarePromise @ localhost:4200/polyfills.js:4542
__awaiter @ localhost:4200/vendor.js:774
BrowserCrypto.getSubtleCryptoDigest @ localhost:4200/vendor.js:4747
(anonymous) @ localhost:4200/vendor.js:4649
step @ localhost:4200/vendor.js:804
(anonymous) @ localhost:4200/vendor.js:785
(anonymous) @ localhost:4200/vendor.js:778
ZoneAwarePromise @ localhost:4200/polyfills.js:4542
__awaiter @ localhost:4200/vendor.js:774
BrowserCrypto.sha256Digest @ localhost:4200/vendor.js:4645
(anonymous) @ localhost:4200/vendor.js:5356
step @ localhost:4200/vendor.js:804
(anonymous) @ localhost:4200/vendor.js:785
(anonymous) @ localhost:4200/vendor.js:778
ZoneAwarePromise @ localhost:4200/polyfills.js:4542
__awaiter @ localhost:4200/vendor.js:774
PkceGenerator.generateCodeChallengeFromVerifier @ localhost:4200/vendor.js:5350
(anonymous) @ localhost:4200/vendor.js:5317
step @ localhost:4200/vendor.js:804
(anonymous) @ localhost:4200/vendor.js:785
(anonymous) @ localhost:4200/vendor.js:778
ZoneAwarePromise @ localhost:4200/polyfills.js:4542
__awaiter @ localhost:4200/vendor.js:774
PkceGenerator.generateCodes @ localhost:4200/vendor.js:5311
(anonymous) @ localhost:4200/vendor.js:4976
step @ localhost:4200/vendor.js:804
(anonymous) @ localhost:4200/vendor.js:785
(anonymous) @ localhost:4200/vendor.js:778
ZoneAwarePromise @ localhost:4200/polyfills.js:4542
__awaiter @ localhost:4200/vendor.js:774
CryptoOps.generatePkceCodes @ localhost:4200/vendor.js:4974
(anonymous) @ localhost:4200/vendor.js:8843
step @ localhost:4200/vendor.js:804
(anonymous) @ localhost:4200/vendor.js:785
(anonymous) @ localhost:4200/vendor.js:778
ZoneAwarePromise @ localhost:4200/polyfills.js:4542
__awaiter @ localhost:4200/vendor.js:774
StandardInteractionClient.initializeAuthorizationCodeRequest @ localhost:4200/vendor.js:8837
(anonymous) @ localhost:4200/vendor.js:8629
step @ localhost:4200/vendor.js:804
(anonymous) @ localhost:4200/vendor.js:785
(anonymous) @ localhost:4200/vendor.js:778
ZoneAwarePromise @ localhost:4200/polyfills.js:4542
__awaiter @ localhost:4200/vendor.js:774
SilentIframeClient.silentTokenHelper @ localhost:4200/vendor.js:8624
(anonymous) @ localhost:4200/vendor.js:8584
step @ localhost:4200/vendor.js:804
(anonymous) @ localhost:4200/vendor.js:785
fulfilled @ localhost:4200/vendor.js:775
invoke @ localhost:4200/polyfills.js:3487
onInvoke @ localhost:4200/vendor.js:111144
invoke @ localhost:4200/polyfills.js:3486
run @ localhost:4200/polyfills.js:3249
(anonymous) @ localhost:4200/polyfills.js:4390
invokeTask @ localhost:4200/polyfills.js:3521
onInvokeTask @ localhost:4200/vendor.js:111131
invokeTask @ localhost:4200/polyfills.js:3520
runTask @ localhost:4200/polyfills.js:3293
drainMicroTaskQueue @ localhost:4200/polyfills.js:3700
Promise.then (async)
nativeScheduleMicroTask @ localhost:4200/polyfills.js:3676
scheduleMicroTask @ localhost:4200/polyfills.js:3687
scheduleTask @ localhost:4200/polyfills.js:3511
onScheduleTask @ localhost:4200/polyfills.js:3398
scheduleTask @ localhost:4200/polyfills.js:3501
scheduleTask @ localhost:4200/polyfills.js:3336
scheduleMicroTask @ localhost:4200/polyfills.js:3356
scheduleResolveOrReject @ localhost:4200/polyfills.js:4380
resolvePromise @ localhost:4200/polyfills.js:4317
(anonymous) @ localhost:4200/polyfills.js:4233
Promise.then (async)
(anonymous) @ localhost:4200/polyfills.js:4611
ZoneAwarePromise @ localhost:4200/polyfills.js:4542
Ctor.then @ localhost:4200/polyfills.js:4610
resolvePromise @ localhost:4200/polyfills.js:4284
(anonymous) @ localhost:4200/polyfills.js:4233
(anonymous) @ localhost:4200/vendor.js:773
ZoneAwarePromise @ localhost:4200/polyfills.js:4542
adopt @ localhost:4200/vendor.js:773
step @ localhost:4200/vendor.js:777
fulfilled @ localhost:4200/vendor.js:775
invoke @ localhost:4200/polyfills.js:3487
onInvoke @ localhost:4200/vendor.js:111144
invoke @ localhost:4200/polyfills.js:3486
run @ localhost:4200/polyfills.js:3249
(anonymous) @ localhost:4200/polyfills.js:4390
invokeTask @ localhost:4200/polyfills.js:3521
onInvokeTask @ localhost:4200/vendor.js:111131
invokeTask @ localhost:4200/polyfills.js:3520
runTask @ localhost:4200/polyfills.js:3293
drainMicroTaskQueue @ localhost:4200/polyfills.js:3700
Promise.then (async)
nativeScheduleMicroTask @ localhost:4200/polyfills.js:3676
scheduleMicroTask @ localhost:4200/polyfills.js:3687
scheduleTask @ localhost:4200/polyfills.js:3511
onScheduleTask @ localhost:4200/polyfills.js:3398
scheduleTask @ localhost:4200/polyfills.js:3501
scheduleTask @ localhost:4200/polyfills.js:3336
scheduleMicroTask @ localhost:4200/polyfills.js:3356
scheduleResolveOrReject @ localhost:4200/polyfills.js:4380
resolvePromise @ localhost:4200/polyfills.js:4317
(anonymous) @ localhost:4200/polyfills.js:4233
Promise.then (async)
(anonymous) @ localhost:4200/polyfills.js:4611
ZoneAwarePromise @ localhost:4200/polyfills.js:4542
Ctor.then @ localhost:4200/polyfills.js:4610
(anonymous) @ localhost:4200/vendor.js:31089
(anonymous) @ localhost:4200/vendor.js:9788
step @ localhost:4200/vendor.js:804
(anonymous) @ localhost:4200/vendor.js:785
(anonymous) @ localhost:4200/vendor.js:778
ZoneAwarePromise @ localhost:4200/polyfills.js:4542
__awaiter @ localhost:4200/vendor.js:774
FetchClient.sendPostRequestAsync @ localhost:4200/vendor.js:9779
(anonymous) @ localhost:4200/vendor.js:16950
step @ localhost:4200/vendor.js:10899
(anonymous) @ localhost:4200/vendor.js:10880
(anonymous) @ localhost:4200/vendor.js:10873
ZoneAwarePromise @ localhost:4200/polyfills.js:4542
__awaiter @ localhost:4200/vendor.js:10869
NetworkManager.sendPostRequest @ localhost:4200/vendor.js:16941
(anonymous) @ localhost:4200/vendor.js:14771
step @ localhost:4200/vendor.js:10899
(anonymous) @ localhost:4200/vendor.js:10880
(anonymous) @ localhost:4200/vendor.js:10873
ZoneAwarePromise @ localhost:4200/polyfills.js:4542
__awaiter @ localhost:4200/vendor.js:10869
BaseClient.executePostToTokenEndpoint @ localhost:4200/vendor.js:14767
(anonymous) @ localhost:4200/vendor.js:14962
step @ localhost:4200/vendor.js:10899
(anonymous) @ localhost:4200/vendor.js:10880
fulfilled @ localhost:4200/vendor.js:10870
invoke @ localhost:4200/polyfills.js:3487
onInvoke @ localhost:4200/vendor.js:111144
invoke @ localhost:4200/polyfills.js:3486
run @ localhost:4200/polyfills.js:3249
(anonymous) @ localhost:4200/polyfills.js:4390
invokeTask @ localhost:4200/polyfills.js:3521
onInvokeTask @ localhost:4200/vendor.js:111131
invokeTask @ localhost:4200/polyfills.js:3520
runTask @ localhost:4200/polyfills.js:3293
drainMicroTaskQueue @ localhost:4200/polyfills.js:3700
Promise.then (async)
nativeScheduleMicroTask @ localhost:4200/polyfills.js:3676
scheduleMicroTask @ localhost:4200/polyfills.js:3687
scheduleTask @ localhost:4200/polyfills.js:3511
onScheduleTask @ localhost:4200/polyfills.js:3398
scheduleTask @ localhost:4200/polyfills.js:3501
scheduleTask @ localhost:4200/polyfills.js:3336
scheduleMicroTask @ localhost:4200/polyfills.js:3356
scheduleResolveOrReject @ localhost:4200/polyfills.js:4380
resolvePromise @ localhost:4200/polyfills.js:4317
(anonymous) @ localhost:4200/polyfills.js:4233
Promise.then (async)
(anonymous) @ localhost:4200/polyfills.js:4611
ZoneAwarePromise @ localhost:4200/polyfills.js:4542
Ctor.then @ localhost:4200/polyfills.js:4610
resolvePromise @ localhost:4200/polyfills.js:4284
(anonymous) @ localhost:4200/polyfills.js:4233
(anonymous) @ localhost:4200/vendor.js:773
ZoneAwarePromise @ localhost:4200/polyfills.js:4542
adopt @ localhost:4200/vendor.js:773
step @ localhost:4200/vendor.js:777
fulfilled @ localhost:4200/vendor.js:775
invoke @ localhost:4200/polyfills.js:3487
onInvoke @ localhost:4200/vendor.js:111144
invoke @ localhost:4200/polyfills.js:3486
run @ localhost:4200/polyfills.js:3249
(anonymous) @ localhost:4200/polyfills.js:4390
invokeTask @ localhost:4200/polyfills.js:3521
onInvokeTask @ localhost:4200/vendor.js:111131
invokeTask @ localhost:4200/polyfills.js:3520
runTask @ localhost:4200/polyfills.js:3293
drainMicroTaskQueue @ localhost:4200/polyfills.js:3700
Promise.then (async)
nativeScheduleMicroTask @ localhost:4200/polyfills.js:3676
scheduleMicroTask @ localhost:4200/polyfills.js:3687
scheduleTask @ localhost:4200/polyfills.js:3511
onScheduleTask @ localhost:4200/polyfills.js:3398
scheduleTask @ localhost:4200/polyfills.js:3501
scheduleTask @ localhost:4200/polyfills.js:3336
scheduleMicroTask @ localhost:4200/polyfills.js:3356
scheduleResolveOrReject @ localhost:4200/polyfills.js:4380
resolvePromise @ localhost:4200/polyfills.js:4317
(anonymous) @ localhost:4200/polyfills.js:4233
Promise.then (async)
(anonymous) @ localhost:4200/polyfills.js:4611
ZoneAwarePromise @ localhost:4200/polyfills.js:4542
Ctor.then @ localhost:4200/polyfills.js:4610
(anonymous) @ localhost:4200/vendor.js:31089
(anonymous) @ localhost:4200/vendor.js:9740
step @ localhost:4200/vendor.js:804
(anonymous) @ localhost:4200/vendor.js:785
(anonymous) @ localhost:4200/vendor.js:778
ZoneAwarePromise @ localhost:4200/polyfills.js:4542
__awaiter @ localhost:4200/vendor.js:774
FetchClient.sendGetRequestAsync @ localhost:4200/vendor.js:9734
(anonymous) @ localhost:4200/vendor.js:11474
step @ localhost:4200/vendor.js:10899
(anonymous) @ localhost:4200/vendor.js:10880
(anonymous) @ localhost:4200/vendor.js:10873
ZoneAwarePromise @ localhost:4200/polyfills.js:4542
__awaiter @ localhost:4200/vendor.js:10869
Authority.getEndpointMetadataFromNetwork @ localhost:4200/vendor.js:11462
(anonymous) @ localhost:4200/vendor.js:11405
step @ localhost:4200/vendor.js:10899
(anonymous) @ localhost:4200/vendor.js:10880
(anonymous) @ localhost:4200/vendor.js:10873
ZoneAwarePromise @ localhost:4200/polyfills.js:4542
__awaiter @ localhost:4200/vendor.js:10869
Authority.updateEndpointMetadata @ localhost:4200/vendor.js:11390
(anonymous) @ localhost:4200/vendor.js:11368
step @ localhost:4200/vendor.js:10899
(anonymous) @ localhost:4200/vendor.js:10880
fulfilled @ localhost:4200/vendor.js:10870
invoke @ localhost:4200/polyfills.js:3487
onInvoke @ localhost:4200/vendor.js:111144
invoke @ localhost:4200/polyfills.js:3486
run @ localhost:4200/polyfills.js:3249
(anonymous) @ localhost:4200/polyfills.js:4390
invokeTask @ localhost:4200/polyfills.js:3521
onInvokeTask @ localhost:4200/vendor.js:111131
invokeTask @ localhost:4200/polyfills.js:3520
runTask @ localhost:4200/polyfills.js:3293
drainMicroTaskQueue @ localhost:4200/polyfills.js:3700
invokeTask @ localhost:4200/polyfills.js:3606
invokeTask @ localhost:4200/polyfills.js:4763
globalCallback @ localhost:4200/polyfills.js:4806
globalZoneAwareCallback @ localhost:4200/polyfills.js:4827
load (async)
customScheduleGlobal @ localhost:4200/polyfills.js:4911
scheduleTask @ localhost:4200/polyfills.js:3508
onScheduleTask @ localhost:4200/polyfills.js:3398
scheduleTask @ localhost:4200/polyfills.js:3501
scheduleTask @ localhost:4200/polyfills.js:3336
scheduleEventTask @ localhost:4200/polyfills.js:3362
(anonymous) @ localhost:4200/polyfills.js:5066
(anonymous) @ localhost:4200/vendor.js:22188
(anonymous) @ localhost:4200/vendor.js:31431
(anonymous) @ localhost:4200/vendor.js:84638
_trySubscribe @ localhost:4200/vendor.js:39405
(anonymous) @ localhost:4200/vendor.js:39399
errorContext @ localhost:4200/vendor.js:43482
subscribe @ localhost:4200/vendor.js:39390
doInnerSub @ localhost:4200/vendor.js:41493
outerNext @ localhost:4200/vendor.js:41488
OperatorSubscriber._next @ localhost:4200/vendor.js:40850
next @ localhost:4200/vendor.js:39763
(anonymous) @ localhost:4200/vendor.js:40590
_trySubscribe @ localhost:4200/vendor.js:39405
(anonymous) @ localhost:4200/vendor.js:39399
errorContext @ localhost:4200/vendor.js:43482
subscribe @ localhost:4200/vendor.js:39390
mergeInternals @ localhost:4200/vendor.js:41524
(anonymous) @ localhost:4200/vendor.js:41564
(anonymous) @ localhost:4200/vendor.js:43786
(anonymous) @ localhost:4200/vendor.js:39394
errorContext @ localhost:4200/vendor.js:43482
subscribe @ localhost:4200/vendor.js:39390
(anonymous) @ localhost:4200/vendor.js:41270
(anonymous) @ localhost:4200/vendor.js:43786
(anonymous) @ localhost:4200/vendor.js:39394
errorContext @ localhost:4200/vendor.js:43482
subscribe @ localhost:4200/vendor.js:39390
(anonymous) @ localhost:4200/vendor.js:41410
(anonymous) @ localhost:4200/vendor.js:43786
(anonymous) @ localhost:4200/vendor.js:39394
errorContext @ localhost:4200/vendor.js:43482
subscribe @ localhost:4200/vendor.js:39390
(anonymous) @ localhost:4200/vendor.js:40088
ZoneAwarePromise @ localhost:4200/polyfills.js:4542
lastValueFrom @ localhost:4200/vendor.js:40085
loadConfig @ localhost:4200/main.js:1213
(anonymous) @ localhost:4200/main.js:1223
runInitializers @ localhost:4200/vendor.js:110365
(anonymous) @ localhost:4200/vendor.js:111720
_callAndReportToErrorHandler @ localhost:4200/vendor.js:111828
(anonymous) @ localhost:4200/vendor.js:111718
invoke @ localhost:4200/polyfills.js:3487
onInvoke @ localhost:4200/vendor.js:111144
invoke @ localhost:4200/polyfills.js:3486
run @ localhost:4200/polyfills.js:3249
run @ localhost:4200/vendor.js:110998
bootstrapModuleFactory @ localhost:4200/vendor.js:111697
(anonymous) @ localhost:4200/vendor.js:111750
invoke @ localhost:4200/polyfills.js:3487
run @ localhost:4200/polyfills.js:3249
(anonymous) @ localhost:4200/polyfills.js:4390
invokeTask @ localhost:4200/polyfills.js:3521
runTask @ localhost:4200/polyfills.js:3293
drainMicroTaskQueue @ localhost:4200/polyfills.js:3700
Promise.then (async)
nativeScheduleMicroTask @ localhost:4200/polyfills.js:3676
scheduleMicroTask @ localhost:4200/polyfills.js:3687
scheduleTask @ localhost:4200/polyfills.js:3511
scheduleTask @ localhost:4200/polyfills.js:3336
scheduleMicroTask @ localhost:4200/polyfills.js:3356
scheduleResolveOrReject @ localhost:4200/polyfills.js:4380
then @ localhost:4200/polyfills.js:4565
bootstrapModule @ localhost:4200/vendor.js:111750
14431 @ localhost:4200/main.js:8996
webpack_require @ localhost:4200/runtime.js:23
webpack_exec @ localhost:4200/main.js:9004
(anonymous) @ localhost:4200/main.js:9005
webpack_require.O @ localhost:4200/runtime.js:60
(anonymous) @ localhost:4200/main.js:9006
webpackJsonpCallback @ localhost:4200/runtime.js:304
(anonymous) @ localhost:4200/main.js:2
5 ERROR Error: Uncaught (in promise): BrowserAuthError: interaction_in_progress: Interaction is currently in progress. Please ensure that this interaction has been completed before calling an interactive API. For more visit: aka.ms/msaljs/browser-errors.
BrowserAuthError: interaction_in_progress: Interaction is currently in progress. Please ensure that this interaction has been completed before calling an interactive API. For more visit: aka.ms/msaljs/browser-errors.
Msal Logs
[Wed, 26 Jul 2023 15:21:12 GMT] : @azure/msal-browser@2.27.0 : Verbose - Event callback registered with id: c4d0200b-acd1-483e-9662-4ae88a8e089a
[Wed, 26 Jul 2023 15:21:12 GMT] : @azure/msal-browser@2.27.0 : Verbose - getAllAccounts called
[Wed, 26 Jul 2023 15:21:12 GMT] : @azure/msal-browser@2.27.0 : Verbose - Adding account storage listener.
[Wed, 26 Jul 2023 15:21:12 GMT] : @azure/msal-angular@2.3.3 : Verbose - MsalRedirectComponent activated
[Wed, 26 Jul 2023 15:21:12 GMT] : @azure/msal-browser@2.27.0 : Verbose - Emitting event to callback c4d0200b-acd1-483e-9662-4ae88a8e089a: msal:initializeStart
[Wed, 26 Jul 2023 15:21:12 GMT] : @azure/msal-browser@2.27.0 : Verbose - Emitting event to callback c4d0200b-acd1-483e-9662-4ae88a8e089a: msal:initializeEnd
[Wed, 26 Jul 2023 15:21:12 GMT] : @azure/msal-browser@2.27.0 : Verbose - handleRedirectPromise called
[Wed, 26 Jul 2023 15:21:12 GMT] : @azure/msal-browser@2.27.0 : Verbose - getAllAccounts called
[Wed, 26 Jul 2023 15:21:12 GMT] : @azure/msal-browser@2.27.0 : Verbose - Emitting event to callback c4d0200b-acd1-483e-9662-4ae88a8e089a: msal:handleRedirectStart
[Wed, 26 Jul 2023 15:21:12 GMT] : @azure/msal-angular@2.3.3 : Verbose - BroadcastService - msal:handleRedirectStart results in setting inProgress from startup to handleRedirect
[Wed, 26 Jul 2023 15:21:12 GMT] : @azure/msal-browser@2.27.0 : Verbose - handleRedirectPromise has been called for the first time, storing the promise
[Wed, 26 Jul 2023 15:21:12 GMT] : [24d21806-626f-4f84-84bf-72247a090d41] : msal.js.browser@2.27.0 : Verbose - initializeServerTelemetryManager called
[Wed, 26 Jul 2023 15:21:12 GMT] : @azure/msal-browser@2.27.0 : Verbose - Emitting event to callback c4d0200b-acd1-483e-9662-4ae88a8e089a: msal:handleRedirectEnd
[Wed, 26 Jul 2023 15:21:12 GMT] : @azure/msal-angular@2.3.3 : Verbose - BroadcastService - msal:handleRedirectEnd results in setting inProgress from handleRedirect to none
[Wed, 26 Jul 2023 15:21:12 GMT] : @azure/msal-browser@2.27.0 : Verbose - getAllAccounts called
[Wed, 26 Jul 2023 15:21:12 GMT] : @azure/msal-angular@2.3.3 : Verbose - MSAL Interceptor activated
[Wed, 26 Jul 2023 15:21:12 GMT] : @azure/msal-angular@2.3.3 : Verbose - Interceptor - getting scopes for endpoint
[Wed, 26 Jul 2023 15:21:12 GMT] : @azure/msal-angular@2.3.3 : Verbose - Interceptor - active account selected
[Wed, 26 Jul 2023 15:21:12 GMT] : @azure/msal-browser@2.27.0 : Verbose - preflightBrowserEnvironmentCheck started
[Wed, 26 Jul 2023 15:21:12 GMT] : [bc9594cd-1e71-405a-ac3b-756ebfef07fe] : @azure/msal-browser@2.27.0 : Verbose - acquireTokenSilent called
[Wed, 26 Jul 2023 15:21:12 GMT] : [bc9594cd-1e71-405a-ac3b-756ebfef07fe] : @azure/msal-browser@2.27.0 : Verbose - acquireTokenSilent called for the first time, storing active request
[Wed, 26 Jul 2023 15:21:12 GMT] : @azure/msal-browser@2.27.0 : Verbose - Emitting event to callback c4d0200b-acd1-483e-9662-4ae88a8e089a: msal:acquireTokenStart
[Wed, 26 Jul 2023 15:21:12 GMT] : @azure/msal-browser@2.27.0 : Verbose - acquireTokenSilent - attempting to acquire token from web flow
[Wed, 26 Jul 2023 15:21:12 GMT] : [bc9594cd-1e71-405a-ac3b-756ebfef07fe] : msal.js.browser@2.27.0 : Verbose - Initializing BaseAuthRequest
[Wed, 26 Jul 2023 15:21:12 GMT] : [bc9594cd-1e71-405a-ac3b-756ebfef07fe] : msal.js.browser@2.27.0 : Verbose - Authentication Scheme wasn't explicitly set in request, defaulting to "Bearer" request
[Wed, 26 Jul 2023 15:21:12 GMT] : @azure/msal-angular@2.3.3 : Verbose - MSAL Interceptor activated
[Wed, 26 Jul 2023 15:21:12 GMT] : @azure/msal-angular@2.3.3 : Verbose - Interceptor - getting scopes for endpoint
[Wed, 26 Jul 2023 15:21:12 GMT] : @azure/msal-angular@2.3.3 : Verbose - Interceptor - active account selected
[Wed, 26 Jul 2023 15:21:12 GMT] : @azure/msal-browser@2.27.0 : Verbose - preflightBrowserEnvironmentCheck started
[Wed, 26 Jul 2023 15:21:12 GMT] : [bd97bea1-5e03-485b-84d1-6190c5b201ed] : @azure/msal-browser@2.27.0 : Verbose - acquireTokenSilent called
[Wed, 26 Jul 2023 15:21:12 GMT] : [bd97bea1-5e03-485b-84d1-6190c5b201ed] : @azure/msal-browser@2.27.0 : Verbose - acquireTokenSilent has been called previously, returning the result from the first call
[Wed, 26 Jul 2023 15:21:12 GMT] : @azure/msal-angular@2.3.3 : Verbose - MSAL Interceptor activated
[Wed, 26 Jul 2023 15:21:12 GMT] : @azure/msal-angular@2.3.3 : Verbose - Interceptor - getting scopes for endpoint
[Wed, 26 Jul 2023 15:21:12 GMT] : @azure/msal-angular@2.3.3 : Verbose - Interceptor - active account selected
[Wed, 26 Jul 2023 15:21:12 GMT] : @azure/msal-browser@2.27.0 : Verbose - preflightBrowserEnvironmentCheck started
[Wed, 26 Jul 2023 15:21:12 GMT] : [02dc03b4-f2fa-4996-bafe-743776e4685f] : @azure/msal-browser@2.27.0 : Verbose - acquireTokenSilent called
[Wed, 26 Jul 2023 15:21:12 GMT] : [02dc03b4-f2fa-4996-bafe-743776e4685f] : @azure/msal-browser@2.27.0 : Verbose - acquireTokenSilent has been called previously, returning the result from the first call
[Wed, 26 Jul 2023 15:21:12 GMT] : [bc9594cd-1e71-405a-ac3b-756ebfef07fe] : msal.js.browser@2.27.0 : Verbose - initializeServerTelemetryManager called
[Wed, 26 Jul 2023 15:21:12 GMT] : [bc9594cd-1e71-405a-ac3b-756ebfef07fe] : msal.js.browser@2.27.0 : Verbose - getClientConfiguration called
[Wed, 26 Jul 2023 15:21:12 GMT] : [bc9594cd-1e71-405a-ac3b-756ebfef07fe] : msal.js.browser@2.27.0 : Verbose - getDiscoveredAuthority called
[Wed, 26 Jul 2023 15:21:12 GMT] : [bc9594cd-1e71-405a-ac3b-756ebfef07fe] : msal.js.browser@2.27.0 : Verbose - Creating discovered authority with configured authority
[Wed, 26 Jul 2023 15:21:12 GMT] : @azure/msal-angular@2.3.3 : Verbose - Guard - canActivate
[Wed, 26 Jul 2023 15:21:12 GMT] : @azure/msal-angular@2.3.3 : Verbose - MSAL Guard activated
[Wed, 26 Jul 2023 15:21:12 GMT] : @azure/msal-browser@2.27.0 : Verbose - handleRedirectPromise called
[Wed, 26 Jul 2023 15:21:12 GMT] : @azure/msal-browser@2.27.0 : Verbose - getAllAccounts called
[Wed, 26 Jul 2023 15:21:12 GMT] : @azure/msal-browser@2.27.0 : Verbose - handleRedirectPromise has been called previously, returning the result from the first call
[Wed, 26 Jul 2023 15:21:12 GMT] : @azure/msal-browser@2.27.0 : Verbose - getAllAccounts called
[Wed, 26 Jul 2023 15:21:12 GMT] : @azure/msal-angular@2.3.3 : Verbose - Guard - at least 1 account exists, can activate or load
[Wed, 26 Jul 2023 15:21:12 GMT] : @azure/msal-angular@2.3.3 : Verbose - MSAL Interceptor activated
[Wed, 26 Jul 2023 15:21:12 GMT] : @azure/msal-angular@2.3.3 : Verbose - Interceptor - getting scopes for endpoint
[Wed, 26 Jul 2023 15:21:12 GMT] : @azure/msal-angular@2.3.3 : Verbose - Interceptor - active account selected
[Wed, 26 Jul 2023 15:21:12 GMT] : @azure/msal-browser@2.27.0 : Verbose - preflightBrowserEnvironmentCheck started
[Wed, 26 Jul 2023 15:21:12 GMT] : [e6b92c94-697f-443b-9412-2ba329ce052c] : @azure/msal-browser@2.27.0 : Verbose - acquireTokenSilent called
[Wed, 26 Jul 2023 15:21:12 GMT] : [e6b92c94-697f-443b-9412-2ba329ce052c] : @azure/msal-browser@2.27.0 : Verbose - acquireTokenSilent has been called previously, returning the result from the first call
[Wed, 26 Jul 2023 15:21:12 GMT] : @azure/msal-angular@2.3.3 : Verbose - MSAL Interceptor activated
[Wed, 26 Jul 2023 15:21:12 GMT] : @azure/msal-angular@2.3.3 : Verbose - Interceptor - getting scopes for endpoint
[Wed, 26 Jul 2023 15:21:12 GMT] : @azure/msal-angular@2.3.3 : Verbose - Interceptor - active account selected
[Wed, 26 Jul 2023 15:21:12 GMT] : @azure/msal-browser@2.27.0 : Verbose - preflightBrowserEnvironmentCheck started
[Wed, 26 Jul 2023 15:21:12 GMT] : [96d91397-3ec1-43c2-a3ef-3c211662fa6e] : @azure/msal-browser@2.27.0 : Verbose - acquireTokenSilent called
[Wed, 26 Jul 2023 15:21:12 GMT] : [96d91397-3ec1-43c2-a3ef-3c211662fa6e] : @azure/msal-browser@2.27.0 : Verbose - acquireTokenSilent has been called previously, returning the result from the first call
[Wed, 26 Jul 2023 15:21:12 GMT] : @azure/msal-angular@2.3.3 : Verbose - MSAL Interceptor activated
[Wed, 26 Jul 2023 15:21:12 GMT] : @azure/msal-angular@2.3.3 : Verbose - Interceptor - getting scopes for endpoint
[Wed, 26 Jul 2023 15:21:12 GMT] : @azure/msal-angular@2.3.3 : Verbose - Interceptor - active account selected
[Wed, 26 Jul 2023 15:21:12 GMT] : @azure/msal-browser@2.27.0 : Verbose - preflightBrowserEnvironmentCheck started
[Wed, 26 Jul 2023 15:21:12 GMT] : [f4b9c477-ab5f-41ee-b15d-6d85cafbe22a] : @azure/msal-browser@2.27.0 : Verbose - acquireTokenSilent called
[Wed, 26 Jul 2023 15:21:12 GMT] : [f4b9c477-ab5f-41ee-b15d-6d85cafbe22a] : @azure/msal-browser@2.27.0 : Verbose - acquireTokenSilent has been called previously, returning the result from the first call
[Wed, 26 Jul 2023 15:21:13 GMT] : [bc9594cd-1e71-405a-ac3b-756ebfef07fe] : msal.js.browser@2.27.0 : Verbose - Silent auth client created
[Wed, 26 Jul 2023 15:21:13 GMT] : @azure/msal-browser@2.27.0 : Verbose - Emitting event to callback c4d0200b-acd1-483e-9662-4ae88a8e089a: msal:acquireTokenFromNetworkStart
[Wed, 26 Jul 2023 15:21:13 GMT] : [bc9594cd-1e71-405a-ac3b-756ebfef07fe] : msal.js.browser@2.27.0 : Verbose - Initializing BaseAuthRequest
[Wed, 26 Jul 2023 15:21:13 GMT] : [bc9594cd-1e71-405a-ac3b-756ebfef07fe] : msal.js.browser@2.27.0 : Verbose - Authentication Scheme set to "Bearer" as configured in Auth request
[Wed, 26 Jul 2023 15:21:13 GMT] : [bc9594cd-1e71-405a-ac3b-756ebfef07fe] : msal.js.browser@2.27.0 : Verbose - initializeServerTelemetryManager called
[Wed, 26 Jul 2023 15:21:13 GMT] : [bc9594cd-1e71-405a-ac3b-756ebfef07fe] : msal.js.browser@2.27.0 : Verbose - getClientConfiguration called
[Wed, 26 Jul 2023 15:21:13 GMT] : [bc9594cd-1e71-405a-ac3b-756ebfef07fe] : msal.js.browser@2.27.0 : Verbose - getDiscoveredAuthority called
[Wed, 26 Jul 2023 15:21:13 GMT] : [bc9594cd-1e71-405a-ac3b-756ebfef07fe] : msal.js.browser@2.27.0 : Verbose - Creating discovered authority with configured authority
[Wed, 26 Jul 2023 15:21:13 GMT] : [bc9594cd-1e71-405a-ac3b-756ebfef07fe] : msal.js.browser@2.27.0 : Verbose - Refresh token client created
[Wed, 26 Jul 2023 15:21:13 GMT] : [bc9594cd-1e71-405a-ac3b-756ebfef07fe] : @azure/msal-browser@2.27.0 : Verbose - Refresh token expired or invalid, attempting acquire token by iframe
[Wed, 26 Jul 2023 15:21:13 GMT] : [bc9594cd-1e71-405a-ac3b-756ebfef07fe] : msal.js.browser@2.27.0 : Verbose - acquireTokenByIframe called
[Wed, 26 Jul 2023 15:21:13 GMT] : [bc9594cd-1e71-405a-ac3b-756ebfef07fe] : msal.js.browser@2.27.0 : Verbose - initializeAuthorizationRequest called
[Wed, 26 Jul 2023 15:21:13 GMT] : [bc9594cd-1e71-405a-ac3b-756ebfef07fe] : msal.js.browser@2.27.0 : Verbose - getRedirectUri called
[Wed, 26 Jul 2023 15:21:13 GMT] : [bc9594cd-1e71-405a-ac3b-756ebfef07fe] : msal.js.browser@2.27.0 : Verbose - Initializing BaseAuthRequest
[Wed, 26 Jul 2023 15:21:13 GMT] : [bc9594cd-1e71-405a-ac3b-756ebfef07fe] : msal.js.browser@2.27.0 : Verbose - Authentication Scheme set to "Bearer" as configured in Auth request
[Wed, 26 Jul 2023 15:21:13 GMT] : [bc9594cd-1e71-405a-ac3b-756ebfef07fe] : msal.js.browser@2.27.0 : Verbose - Setting validated request account
[Wed, 26 Jul 2023 15:21:13 GMT] : [bc9594cd-1e71-405a-ac3b-756ebfef07fe] : msal.js.browser@2.27.0 : Verbose - initializeServerTelemetryManager called
[Wed, 26 Jul 2023 15:21:13 GMT] : [bc9594cd-1e71-405a-ac3b-756ebfef07fe] : msal.js.browser@2.27.0 : Verbose - getClientConfiguration called
[Wed, 26 Jul 2023 15:21:13 GMT] : [bc9594cd-1e71-405a-ac3b-756ebfef07fe] : msal.js.browser@2.27.0 : Verbose - getDiscoveredAuthority called
[Wed, 26 Jul 2023 15:21:13 GMT] : [bc9594cd-1e71-405a-ac3b-756ebfef07fe] : msal.js.browser@2.27.0 : Verbose - Creating discovered authority with configured authority
[Wed, 26 Jul 2023 15:21:13 GMT] : [bc9594cd-1e71-405a-ac3b-756ebfef07fe] : msal.js.browser@2.27.0 : Verbose - Auth code client created
[Wed, 26 Jul 2023 15:21:13 GMT] : [bc9594cd-1e71-405a-ac3b-756ebfef07fe] : msal.js.browser@2.27.0 : Verbose - initializeAuthorizationRequest called
[Wed, 26 Jul 2023 15:21:13 GMT] : [bc9594cd-1e71-405a-ac3b-756ebfef07fe] : @azure/msal-common@7.1.0 : Verbose - createAuthCodeUrlQueryString: Adding login_hint from account
[Wed, 26 Jul 2023 15:21:16 GMT] : [bc9594cd-1e71-405a-ac3b-756ebfef07fe] : msal.js.browser@2.27.0 : Verbose - validateAndExtractStateFromHash called
[Wed, 26 Jul 2023 15:21:16 GMT] : [bc9594cd-1e71-405a-ac3b-756ebfef07fe] : msal.js.browser@2.27.0 : Verbose - Returning state from hash
[Wed, 26 Jul 2023 15:21:16 GMT] : [bc9594cd-1e71-405a-ac3b-756ebfef07fe] : msal.js.browser@2.27.0 : Verbose - InteractionHandler.handleCodeResponse called
[Wed, 26 Jul 2023 15:21:16 GMT] : @azure/msal-browser@2.27.0 : Verbose - Emitting event to callback c4d0200b-acd1-483e-9662-4ae88a8e089a: msal:acquireTokenFailure
[Wed, 26 Jul 2023 15:21:16 GMT] : [bc9594cd-1e71-405a-ac3b-756ebfef07fe] : @azure/msal-browser@2.27.0 : Verbose - PerformanceClient: Measurement found for acquireTokenSilent
2 [Wed, 26 Jul 2023 15:21:16 GMT] : [bc9594cd-1e71-405a-ac3b-756ebfef07fe] : @azure/msal-browser@2.27.0 : Verbose - PerformanceClient: Submeasurement for acquireTokenSilent already exists for standardInteractionClientGetDiscoveredAuthority, ignoring
[Wed, 26 Jul 2023 15:21:16 GMT] : [bc9594cd-1e71-405a-ac3b-756ebfef07fe] : @azure/msal-browser@2.27.0 : Verbose - PerformanceClient: Emitting performance events
[Wed, 26 Jul 2023 15:21:16 GMT] : @azure/msal-angular@2.3.3 : Verbose - Interceptor - error acquiring token silently, acquiring by redirect
[Wed, 26 Jul 2023 15:21:16 GMT] : [51da7517-9be6-406e-a7c1-c9a199b5a0a7] : @azure/msal-browser@2.27.0 : Verbose - acquireTokenRedirect called
[Wed, 26 Jul 2023 15:21:16 GMT] : @azure/msal-browser@2.27.0 : Verbose - preflightBrowserEnvironmentCheck started
[Wed, 26 Jul 2023 15:21:16 GMT] : @azure/msal-browser@2.27.0 : Verbose - preflightInteractiveRequest called, validating app environment
[Wed, 26 Jul 2023 15:21:16 GMT] : @azure/msal-browser@2.27.0 : Verbose - getAllAccounts called
[Wed, 26 Jul 2023 15:21:16 GMT] : @azure/msal-browser@2.27.0 : Verbose - Emitting event to callback c4d0200b-acd1-483e-9662-4ae88a8e089a: msal:acquireTokenStart
[Wed, 26 Jul 2023 15:21:16 GMT] : @azure/msal-angular@2.3.3 : Verbose - BroadcastService - msal:acquireTokenStart results in setting inProgress from none to acquireToken
[Wed, 26 Jul 2023 15:21:16 GMT] : [4054727f-26e1-4d86-b7e0-6bfab13705f3] : msal.js.browser@2.27.0 : Verbose - initializeAuthorizationRequest called
[Wed, 26 Jul 2023 15:21:16 GMT] : [4054727f-26e1-4d86-b7e0-6bfab13705f3] : msal.js.browser@2.27.0 : Verbose - getRedirectUri called
[Wed, 26 Jul 2023 15:21:16 GMT] : [4054727f-26e1-4d86-b7e0-6bfab13705f3] : msal.js.browser@2.27.0 : Verbose - Initializing BaseAuthRequest
[Wed, 26 Jul 2023 15:21:16 GMT] : [4054727f-26e1-4d86-b7e0-6bfab13705f3] : msal.js.browser@2.27.0 : Verbose - Authentication Scheme wasn't explicitly set in request, defaulting to "Bearer" request
[Wed, 26 Jul 2023 15:21:16 GMT] : @azure/msal-angular@2.3.3 : Verbose - Interceptor - error acquiring token silently, acquiring by redirect
[Wed, 26 Jul 2023 15:21:16 GMT] : [98043183-bead-4a8e-87b4-5c0607ff489d] : @azure/msal-browser@2.27.0 : Verbose - acquireTokenRedirect called
[Wed, 26 Jul 2023 15:21:16 GMT] : @azure/msal-browser@2.27.0 : Verbose - preflightBrowserEnvironmentCheck started
[Wed, 26 Jul 2023 15:21:16 GMT] : @azure/msal-browser@2.27.0 : Verbose - preflightInteractiveRequest called, validating app environment
[Wed, 26 Jul 2023 15:21:16 GMT] : @azure/msal-angular@2.3.3 : Verbose - Interceptor - error acquiring token silently, acquiring by redirect
[Wed, 26 Jul 2023 15:21:16 GMT] : [ffb1984c-5436-4c14-8075-52ab0981a8d6] : @azure/msal-browser@2.27.0 : Verbose - acquireTokenRedirect called
[Wed, 26 Jul 2023 15:21:16 GMT] : @azure/msal-browser@2.27.0 : Verbose - preflightBrowserEnvironmentCheck started
[Wed, 26 Jul 2023 15:21:16 GMT] : @azure/msal-browser@2.27.0 : Verbose - preflightInteractiveRequest called, validating app environment
[Wed, 26 Jul 2023 15:21:16 GMT] : @azure/msal-angular@2.3.3 : Verbose - Interceptor - error acquiring token silently, acquiring by redirect
[Wed, 26 Jul 2023 15:21:16 GMT] : [7849fff8-4011-4398-9388-325140839216] : @azure/msal-browser@2.27.0 : Verbose - acquireTokenRedirect called
[Wed, 26 Jul 2023 15:21:16 GMT] : @azure/msal-browser@2.27.0 : Verbose - preflightBrowserEnvironmentCheck started
[Wed, 26 Jul 2023 15:21:16 GMT] : @azure/msal-browser@2.27.0 : Verbose - preflightInteractiveRequest called, validating app environment
[Wed, 26 Jul 2023 15:21:16 GMT] : @azure/msal-angular@2.3.3 : Verbose - Interceptor - error acquiring token silently, acquiring by redirect
[Wed, 26 Jul 2023 15:21:16 GMT] : [49e32aa4-ce2f-49b7-bf6a-be4876c2fae0] : @azure/msal-browser@2.27.0 : Verbose - acquireTokenRedirect called
[Wed, 26 Jul 2023 15:21:16 GMT] : @azure/msal-browser@2.27.0 : Verbose - preflightBrowserEnvironmentCheck started
[Wed, 26 Jul 2023 15:21:16 GMT] : @azure/msal-browser@2.27.0 : Verbose - preflightInteractiveRequest called, validating app environment
[Wed, 26 Jul 2023 15:21:16 GMT] : @azure/msal-angular@2.3.3 : Verbose - Interceptor - error acquiring token silently, acquiring by redirect
[Wed, 26 Jul 2023 15:21:16 GMT] : [4d2f7641-1356-4348-9f47-fb733ddedbf9] : @azure/msal-browser@2.27.0 : Verbose - acquireTokenRedirect called
[Wed, 26 Jul 2023 15:21:16 GMT] : @azure/msal-browser@2.27.0 : Verbose - preflightBrowserEnvironmentCheck started
[Wed, 26 Jul 2023 15:21:16 GMT] : @azure/msal-browser@2.27.0 : Verbose - preflightInteractiveRequest called, validating app environment
[Wed, 26 Jul 2023 15:21:16 GMT] : [4054727f-26e1-4d86-b7e0-6bfab13705f3] : msal.js.browser@2.27.0 : Verbose - Setting validated request account
[Wed, 26 Jul 2023 15:21:16 GMT] : [4054727f-26e1-4d86-b7e0-6bfab13705f3] : msal.js.browser@2.27.0 : Verbose - initializeServerTelemetryManager called
[Wed, 26 Jul 2023 15:21:16 GMT] : [4054727f-26e1-4d86-b7e0-6bfab13705f3] : msal.js.browser@2.27.0 : Verbose - initializeAuthorizationRequest called
[Wed, 26 Jul 2023 15:21:16 GMT] : [4054727f-26e1-4d86-b7e0-6bfab13705f3] : msal.js.browser@2.27.0 : Verbose - getClientConfiguration called
[Wed, 26 Jul 2023 15:21:16 GMT] : [4054727f-26e1-4d86-b7e0-6bfab13705f3] : msal.js.browser@2.27.0 : Verbose - getDiscoveredAuthority called
[Wed, 26 Jul 2023 15:21:16 GMT] : [4054727f-26e1-4d86-b7e0-6bfab13705f3] : msal.js.browser@2.27.0 : Verbose - Creating discovered authority with configured authority
[Wed, 26 Jul 2023 15:21:16 GMT] : [4054727f-26e1-4d86-b7e0-6bfab13705f3] : msal.js.browser@2.27.0 : Verbose - Auth code client created
[Wed, 26 Jul 2023 15:21:16 GMT] : [4054727f-26e1-4d86-b7e0-6bfab13705f3] : @azure/msal-common@7.1.0 : Verbose - createAuthCodeUrlQueryString: Adding login_hint from account
[Wed, 26 Jul 2023 15:21:16 GMT] : [4054727f-26e1-4d86-b7e0-6bfab13705f3] : msal.js.browser@2.27.0 : Verbose - RedirectHandler.initiateAuthRequest called
[Wed, 26 Jul 2023 15:21:16 GMT] : [4054727f-26e1-4d86-b7e0-6bfab13705f3] : msal.js.browser@2.27.0 : Verbose - RedirectHandler.initiateAuthRequest: redirectStartPage set, caching start page
[Wed, 26 Jul 2023 15:21:16 GMT] : [4054727f-26e1-4d86-b7e0-6bfab13705f3] : msal.js.browser@2.27.0 : Verbose - RedirectHandler.initiateAuthRequest: Navigating window to navigate url
MSAL Configuration
Relevant Code Snippets
Reproduction Steps
Expected Behavior
After 24 hours if users tries to do something that requires an api call, it is NOT redirected to the sign in page again and it's able to continue navigating for 3 days (b2c setting in my user flow)
Identity Provider
Azure B2C Basic Policy
Browsers Affected (Select all that apply)
Chrome, Firefox, Edge, Safari
Regression
No response
Source
External (Customer)
The text was updated successfully, but these errors were encountered: