-
I have set up an ADFS server for testing. I can find the below attribute statement in the saml Response, which shows the name of my login account
I have included this attribute name in the saml strategy under passport.js
Here is my code
It shows Pass ADFS in the browser but undefined in the console. May I know what I miss in the code? How to get the attribute returned by ADFS? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 7 replies
-
It would be nice if I knew the versions you were working with. Try |
Beta Was this translation helpful? Give feedback.
-
@shanlau it seems that your assertion consuming endpoint is
but your ACS implementation is not actually consuming anything (i.e. it does not handle
As a random side note: your configuration is yet another ADFS related config which has copy pasted |
Beta Was this translation helpful? Give feedback.
@shanlau it seems that your assertion consuming endpoint is
but your ACS implementation is not actually consuming anything (i.e. it does not handle
AuthResponse
from IdP):As a random side note: your configuration is yet another ADFS related config which has copy pasted
acceptedClockSkewMs: -1
e.g. from /docs/adfs/README.md@ v3.2.1 or from some other random examples from internet without verifying whats being configured. Your have setup upper limit for session cookie but you accept replaying authnresponse forever (i.e. authenticated sessio…