gpt4 book ai didi

ios - 我们如何在 Swift 中获取 Stripe 的客户 ID

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

我想在保存卡后获取Stripe的Customerid,我得到了STPToken。我无法从Swift中的STPToken创建customerid。请帮忙。这是我的代码片段。

let paymentConfig = STPPaymentConfiguration.init();
paymentConfig.requiredBillingAddressFields = STPBillingAddressFields.none;
paymentConfig.publishableKey = "pk_test_whRD827lMXvFb1MtY9T7bRzW"
let theme = STPTheme.default();
let addCardViewController = STPAddCardViewController.init(configuration: paymentConfig, theme: theme);
addCardViewController.delegate = self;
let navigationController = UINavigationController(rootViewController: addCardViewController);
self.present(navigationController, animated: true, completion: nil);


func addCardViewController(_ addCardViewController: STPAddCardViewController, didCreateToken token: STPToken, completion: @escaping STPErrorBlock) {
print(token)
dismiss(animated: true)


}

最佳答案

您无法从客户端获取客户 ID。它应该在您的服务器上生成。这是您的服务器生成客户的引用,

https://stripe.com/docs/api/dotnet#create_customer

您应该有一个 API 在您的服务器上发送 stptoken,然后您的服务器应该创建一个 customer 并在响应中返回 customerId .

关于ios - 我们如何在 Swift 中获取 Stripe 的客户 ID,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49892288/

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