#danchi
1 messages · Page 1 of 1 (latest)
Which specific SDK and how are you integrating with Stripe?
Still not decide which SDK to use for integrating
I'm just wondering when someone do a payment with SDK can we obtain adress from a card or not ?
what kind of information we can get from card number ? Since that I see customer need to be created and address is null, can we automatically popuplate from card or not ?
It depends. The PaymentElement integration today will decide by itself what information is best needed to avoid declines from issuers, and also maximize your conversion rate
After a successful transaction, you can look at the PaymentMethod object to see if it has billing address from there, ie. https://stripe.com/docs/api/payment_methods/object#payment_method_object-billing_details, or the card detail, ie https://stripe.com/docs/api/payment_methods/object#payment_method_object-card (brand, last4 etc)
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Clear, thanks. Do you have sandbox for testing purpose ? And in that sandbox can be used real cards or not ?
Test mode is the "sandbox" you need, and no it can't use real cards but you have some test cards to use