It's a Reconcile assigned to a saml identity provider but I have nothing in event log, the Debug mode is activated.
You can see my screenshots.
L
Posts made by laurent.bartet
-
RE: Get user email in claims with saml
-
RE: Get user email in claims with saml
Hi,
Thank you for your reply,
I created a lambda very simple:
// Using the samlResponse, reconcile the User and User Registration.
function reconcile(user, registration, samlResponse) {
console.debug("Lambda Start");
user.data = user.data || {};
user.data.country = "France";
console.log('Lambda finish!');
}Assigned to the good identity but finaly user.data is void and I don't have log events or debug envents.
I don't know if it's running.Thanks,