You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(module-msal): handle both v2 and v4 request formats in proxy provider
Add request format detection to support both v2 format ({ scopes, account })
and v4 format ({ request: { scopes, account } }) in acquireToken and
acquireAccessToken methods.
Fix request format handling in v2 proxy provider to support both v2 and v4 request formats.
6
+
7
+
The `acquireToken` and `acquireAccessToken` methods in the v2 proxy provider now correctly detect and handle requests in both v2 format (`{ scopes, account }`) and v4 format (`{ request: { scopes, account } }`), ensuring compatibility with both API versions.
0 commit comments