#rdhp
1 messages · Page 1 of 1 (latest)
Hello! Do you have any more details? Do you have a Charge or PaymentIntent ID I can take a look at?
Yup that helps!
Why are you only creating a Token? A Token doesn't actually initiate a payment - it's just saving the card to Stripe
oh...
Because I thought that it was enough to make a payment
How I should proceed once I created a token?
Once you've created a token you can use that as the source when you create a Charge (https://stripe.com/docs/api/charges/create)
But really, if you're just starting out with Stripe I wouldn't recommend using Charges or Tokens at all
You should be using PaymentMEthods and PaymentIntents
Why ? It looks to be easy create a token and now charge it
1 Question the token is a safe data to share with the user or I should hide it?
Those APIs have been deprecated for a while - you can't use them if you accept payments in countries where authentication needs to be provided
In italy?
I have a release of a new service for monday, so if for italy is ok I will use it and schedule the change of the API to paymentsintent
I believe Italy does have SCA and will require authentication
oh shiet ok I will change the payment method
Yeah I'd recommend reading through this guide: https://stripe.com/docs/payments/accept-a-payment
and if you want a no code solution you can look into using something like payment links (https://stripe.com/docs/payments/payment-links)