Hi,
I’ve configured an Enterprise connection via SAML. In the mapping I put :
{
“name”: “http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname”,
“email”: “http://schemas.xmlsoap.org/ws/2005/05/identity/claims/emailaddress”,
“given_name”: “http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname”,
“family_name”: “http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname”
}
when the SAML attributes are :
<Attribute Name="http://schemas.microsoft.com/identity/claims/displayname">
XXX
</Attribute>
<Attribute Name="http://schemas.xmlsoap.org/ws/2005/05/identity/claims/givenname">
XXX
</Attribute>
<Attribute Name="http://schemas.xmlsoap.org/ws/2005/05/identity/claims/surname">
XXX
</Attribute>
<Attribute Name="http://schemas.xmlsoap.org/ws/2005/05/identity/claims/emailaddress">
</Attribute>
<Attribute Name="http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name">
</Attribute>
</AttributeStatement>
What ever I put for the attribut “name” for auth0 the user id alway created with name = http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name
Every other variable have the correct value (given_name, email,…)
Can you help me force another value than “name” for the name ?
Thx