gpt4 book ai didi

java - 使用java在Stripe中为卡充电

转载 作者:行者123 更新时间:2023-11-30 10:41:48 25 4
gpt4 key购买 nike

我也是 Stripe 集成和 Java 方面的新手,我要做的第一件事就是为信用卡充值。我正在使用java。这是充值卡的代码。

enter code here
//CHARGING THE CARD

Stripe.apiKey = "cgchhcchv";
// Get the credit card details submitted by the form
String token = request.getParameter("stripeToken");

// Create the charge on Stripe's servers - this will charge the user's card
try {
Map<String, Object> chargeParams = new HashMap<String, Object>();
chargeParams.put("amount", 1000); // amount in cents, again
chargeParams.put("currency", "usd");
chargeParams.put("source", token);
chargeParams.put("description", "Example charge");

Charge charge = Charge.create(chargeParams);
} catch (CardException e) {
// The card has been declined
}

我添加了 Stripe 库,它们似乎运行良好,但是当尝试执行此代码时,这些错误输出:“HashMap 无法解析为类型”、“请求无法解析”。我不明白为什么即使我创建了这些无法解析的变量也会输出这些错误。有人可以解释一下吗?问候!

最佳答案

在github发布页面你可以找到几个例子: https://github.com/stripe/stripe-java

import java.util.HashMap;
import java.util.Map;

import com.stripe.Stripe;
import com.stripe.exception.StripeException;
import com.stripe.model.Charge;
import com.stripe.net.RequestOptions;

关于java - 使用java在Stripe中为卡充电,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38379580/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com