在我们的客户端实施Stripe时,我们发现网络小部件Stripe Checkout会询问用户电子邮件,您可以在第一张图片中看到。需要此电子邮件信息,因为Stripe会向客户发送有关付款的电子邮件。但是,当实现Stripe Android Integration的小部件时,它不会要求发送电子邮件,正如您在第二张图片中看到的那样。我们如何以及在何处将电子邮件发送到Android应用中的Stripe?
答案 0 :(得分:1)
您实际上需要单独收集电子邮件。创建费用时,您可以将其作为receipt_email
参数[1] [2]传递。如果您使用CustomerSession
[3],则该电子邮件还应与与该会话相关联的客户[4]相关联。
[1] https://stripe.com/docs/api#create_charge
[2] https://stripe.com/docs/charges
[3] https://stripe.com/docs/mobile/android/customer-information
[4] https://stripe.com/docs/api#customer_object