【发布时间】:2013-03-16 13:50:00
【问题描述】:
在应用中存储信用卡的最佳方式是什么?我将使用 Stripe API 处理付款。
原因: 1.消除客户每次都必须输入号码 2. 轻松一键支付
【问题讨论】:
标签: iphone xcode in-app-purchase credit-card stripe-payments
在应用中存储信用卡的最佳方式是什么?我将使用 Stripe API 处理付款。
原因: 1.消除客户每次都必须输入号码 2. 轻松一键支付
【问题讨论】:
标签: iphone xcode in-app-purchase credit-card stripe-payments
我认为如果不符合 PCI/DSS 规定,您就不能存储该信息:Storing Credit Card details in the iPhone App
【讨论】:
如前所述,如果不付出大量努力和费用来遵守 PCI 要求,您就无法合法地将这些数据存储在您的应用中。
这是 Stripe 等服务的主要卖点之一:它们为您存储所有数据,从而免除您的法律负担。
您可以通过创建客户并将他们的卡数据存储在 Stripe 中来完成您想做的所有事情。见:https://stripe.com/docs/tutorials/charges#saving-credit-card-details-for-later
【讨论】: