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
I am calling createLogoutRequest as is set in tests, but when Auth0 receives the request it redirects to the issuer and returns the error "No active session(s) found matching LogoutRequest". I've checked all their forums and it seems to be because of an incoherence between NameID and SessionIndex that is sent and configured for the session that was created.
I am no expert in SAML but I think the problem is that in any part of samlify I could check what is my SessionIndex and NameID or was able to modify them so I wonder if there are any configurations to solve this.
The text was updated successfully, but these errors were encountered:
I have auth0 logout working
I have configured in my app:
//on login you do constparsed=this.sp.parseLoginResponse(...)constinfo={sessionId: parsed.extract.sessionIndex.sessionIndex,nameId: parsed.extract.nameID,}// store info in the session, to use on logoutconstuserInfo={logoutNameID: info.nameId,sessionIndex: info.sessionId}constresult=this.sp.createLogoutRequest(this.idp,'redirect',userInfo)constredirectUrl=result.context
Hi!
I am calling createLogoutRequest as is set in tests, but when Auth0 receives the request it redirects to the issuer and returns the error "No active session(s) found matching LogoutRequest". I've checked all their forums and it seems to be because of an incoherence between NameID and SessionIndex that is sent and configured for the session that was created.
I am no expert in SAML but I think the problem is that in any part of samlify I could check what is my SessionIndex and NameID or was able to modify them so I wonder if there are any configurations to solve this.
The text was updated successfully, but these errors were encountered: