When creating a local user with Azure B2C, the identity setup requires the following three properties: signInType, issuer and issuerAssignedId (doc). If the signInType is set to emailAddress, we are required to set the issuerAssignedId to the users email address. However, it looks like property issuerAssignedId has a 64 character limit. A valid email can be longer than this. I have attempted working around this through the federation type by splitting up the email address and setting the issuerAssignedId to the email username and issuer to the email domain, but this didn't work.
Has anyone been able to work around this artificial character limit?