Hey guys. Is Kinde capable of handling email addresses with +
in the username via the login_hint
parameter? It seems to remove the +
when I've tried this. E.g. user+123@test.com
becomes user
123@test.com
. I am URL encoding the email address FWIW.
Yes we use emails with +
all the time internally, let me check what could be happening here.
We have a step between accepting an invite via email and before we POST to you. When I looked into this initially, I was sanitising the URL params only at the point in which wet set the URL params for the login_hint on the outgoing invite email. When we landed back at our app before we POST to you, I missed ensuring it was sanitised again when set on a link our Rails UJS helper was converting to a POST request that inevitably is sent to you. So because there were effectively two steps, + was converted to a space on the outgoing POST