gpt4 book ai didi

Java Stripe API

转载 作者:行者123 更新时间:2023-12-02 13:34:33 24 4
gpt4 key购买 nike

我正在尝试将 token 绑定(bind)为客户卡。所以,这个 token 是由 Stripe.js 创建的。因此,然后我在后端服务上发送此代码,并尝试将其设置到客户的卡中:

Card card = Token.retrieve(id).getCard();

所以,一旦我得到这个 token 作为卡片,我就会尝试它:

Customer.retrieve(this.customer).getSources().create(card.getMetadata())

尽管如此,我还是遇到了这个编译错误:

The method create(Map) in the type ExternalAccountCollection is not applicable for the arguments (Map)

有什么想法吗?

最佳答案

您可以在此处找到有关将卡添加到现有客户对象的文档:https://stripe.com/docs/api/java#create_card .

正确的代码是:

Customer customer = Customer.retrieve(this.customer);
Map<String, Object> params = new HashMap<String, Object>();
params.put("source", id);
Card card = customer.getSources().create(params);

关于Java Stripe API,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43068827/

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