Stripe 定期支付与 masterpass 集成
Posted
技术标签:
【中文标题】Stripe 定期支付与 masterpass 集成【英文标题】:Stripe recurring payment integrate with masterpass 【发布时间】:2021-06-13 12:07:13 【问题描述】:有没有什么方法可以通过 Masterpass 使用 Stripe 进行定期付款?
Google pay 和 Apple pay 可以通过返回用于 Stripe 流程的卡令牌来使用 Stripe 进行定期付款。有没有办法用Masterpass获得这样的卡片令牌?
【问题讨论】:
【参考方案1】:是的,您可以,您将使用从 Secure Remote Commerce(Masterpass 现在自己调用的)返回的数据创建一个 PaymentMethod,并使用它来开始订阅。
遵循 Stripe 的 SRC 指南,然后当您到达“complete the payment”部分时,您可以这样做:
// create the payment method
const pm = await stripe.paymentMethods.create(
type: 'card',
card:
masterpass:
cart_id: cartId, // your unique cart ID
transaction_id: req.query.oauth_verifier, // get this from the SRC callback URL
,
);
// create the Stripe customer
const cust = await stripe.customers.create(
payment_method: pm.id,
);
// create the subscription
const sub = await stripe.subscriptions.create(
customer: cust.id,
items: [
price: PRICE_ID,
],
default_payment_method: pm.id,
);
【讨论】:
以上是关于Stripe 定期支付与 masterpass 集成的主要内容,如果未能解决你的问题,请参考以下文章
将 Stripe 与 Devise 一起用于 Ruby on Rails 订阅