#grimesbaby
1 messages · Page 1 of 1 (latest)
Can you share the request ID (req_xxx) with the error? Here’s how you can find it: https://support.stripe.com/questions/finding-the-id-for-an-api-request
Find help and support for Stripe. Our support center provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
req_RTBOXWZCoY5V7U
It converted the (+) symbol to a space. malcolm+test2@optimi.co.nz was changed to "malcolm test2@optimi.co.nz"
Gonna try encoding it and see if stripe accepts that
Stripe supports + sign in the email address. It's likely that your code removes the + when setting the email in the request. I'd recommend logging the email variable in your code and ensure that + isn't removed
Does stripe support sending the email in encoded format? I double checked the code and we are indeed sending the email address with the (+) symbol
Stripe supports encoded format with + in the email address. I tested with malcolm+test2@optimi.co.nz through curl command and it's working fine. This is the curl i used:
curl https://api.stripe.com/v1/customers \
-u sk_test_xxx: \
--data-urlencode email="malcolm+test2@optimi.co.nz"
Thanks, it works encoded