-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
TypeError: Cannot read property 'extraQueryParameters' of null #1237
Comments
More information on what we are passing into the AuthenticationParameters. We are stumped on how the AuthenticationParameters object is null when we are passing the Authenticationparameters object in the acquireSilentToken call. If we have the userName we provide it in the AuthenticationParameters object and it is successful. tokenRequest = { let token = await userAgentApplication.acquireTokenSilent(tokenRequest); But if we dont have the userName we provide the following and it appears to be failing quite often. tokenRequest = { |
@davallen what happens if you just pass Can you also try with chrome dev tools to check what is the value passed to the msal in the debug window? I suspect a local runtime issue. One other option is to share us a sample app with steps of repro, if your debug isn't helping you. |
Closing due to inactivity. Please let us know if this is still an issue |
This addresses AzureAD#1411, AzureAD#1237, and AzureAD#1254. I don’t know why some of these type errors are passing compilation as they should be breaking it? Untested, edited code in browser window.
I have similar problem( |
@NortonIce We have another issue already open for this bug: #1411 |
Library
msal@1.2.0
Framework
React v16.8.4
Description
We are calling acquireTokenSilent with only scopes in AuthenticationParameters and receiving the "TypeError: Cannot read property 'extraQueryParameters' of null" error.
The text was updated successfully, but these errors were encountered: