如何在PaymentIntetion
中使用令牌卡(Stripe)?
我需要一个例子,因为我不知道。
在Charge
中可以工作,但我不知道如何在PaymentIntention
中工作:
public Charge createCharge(Integer price,String token,String product)throws StripeException {
Stripe.apiKey = stripeSecret;
String tokenStripe = "";
Map<String, Object> params = new HashMap<>();
params.put("amount", price);
params.put("currency", "eur");
params.put("source", token);
params.put( "description"," Payment produto: "+product);
Charge charge = Charge.create(params);
return charge;
}
1条答案
按热度按时间hmae6n7t1#
您不能在付款意向中使用令牌。付款意向仅支持
payment_method
(pm_xxx)。令牌/费用API是传统集成,不再建议使用。建议使用付款意向与付款要素集成。您可以参考以下指南:https://stripe.com/docs/payments/quickstart