java 在支付意向条中使用令牌卡

afdcj2ne  于 2023-02-28  发布在  Java
关注(0)|答案(1)|浏览(104)

如何在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;
}
hmae6n7t

hmae6n7t1#

您不能在付款意向中使用令牌。付款意向仅支持payment_method(pm_xxx)。
令牌/费用API是传统集成,不再建议使用。建议使用付款意向与付款要素集成。您可以参考以下指南:https://stripe.com/docs/payments/quickstart

相关问题