#grimesbaby

1 messages · Page 1 of 1 (latest)

hollow pantherBOT
icy blaze
vital moon
#

req_RTBOXWZCoY5V7U

#

Gonna try encoding it and see if stripe accepts that

icy blaze
#

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

vital moon
#

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

icy blaze
#

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"
vital moon
#

Thanks, it works encoded