Which Version of MSAL are you using ?
4.3
Platform
all
Problem
According to the OIDC spec https://openid.net/specs/openid-connect-core-1_0.html#ClaimsParameter claims is a parameter relevant to the /authorize endpoint.
MSAL only sends this param to the /token endpoint.
pca.AcquireTokenInteractive(...).WithClaims(claims);
Actual: claims param sent in request to the /token endpoint but not to the /authorize endpoint
Expected: claims param needs to be sent to both
Which Version of MSAL are you using ?
4.3
Platform
all
Problem
According to the OIDC spec https://openid.net/specs/openid-connect-core-1_0.html#ClaimsParameter claims is a parameter relevant to the /authorize endpoint.
MSAL only sends this param to the /token endpoint.
Actual: claims param sent in request to the /token endpoint but not to the /authorize endpoint
Expected: claims param needs to be sent to both