stripe.net

Non-English texts in Stripe possible?

前提是你 提交于 2019-12-02 23:46:53
Successfully integrating Stripe into my online shop, I completely failed to get information on whether/how to configure Stripe to return error messages in German instead of English. So my question is: Is there a way to have localized error messages when using the client-side API " https://js.stripe.com/v2 "? Update 2014-05-03 I've asked the same question on Twitter and one of their staff (I guess) told me that this is currently not possible and on their TODO list. kik For further reference: While you can't use human messages on stripe errors to be displayed directly on localized pages, you can

Charging existing card and customer with security code on stripe

ぃ、小莉子 提交于 2019-12-02 03:54:54
问题 We are using Stripe to process payments on a website we are working on Whenever a customer signs up we create a customer on Stripe and save the customer_Id in the DB against against the customer. Also when a customer places an order on the website we give the option to save the card for future uses. So we save the card against the customer as a payment source on stripe. This is the code we use to create the payment source: public void CreatePaymentSource(int customerId, string paymentToken) {

Charging existing card and customer with security code on stripe

…衆ロ難τιáo~ 提交于 2019-12-02 00:50:59
We are using Stripe to process payments on a website we are working on Whenever a customer signs up we create a customer on Stripe and save the customer_Id in the DB against against the customer. Also when a customer places an order on the website we give the option to save the card for future uses. So we save the card against the customer as a payment source on stripe. This is the code we use to create the payment source: public void CreatePaymentSource(int customerId, string paymentToken) { var customer = _customerProvider.GetLoggedInCustomer(customerId); //returns the customer_id e.g. cux