stripe-payments

stripe-payments

文章 6浏览 15
  • Retrieve Customer\\’s default and active card from Stripe

    RetrieveCustomer'sdefaultandactivecardfromStripe我正在尝试检索客户的默认和活动卡。(另外请记住,使用我拥有的编码,客户总是可以拥有一张卡,这意味着如果有办法解决它可以提供帮助)。几个月前,我使用了这个运行良好的代码段。Stripe似乎做了一些更新,但我现在无法让它工作。current_user.stripe_card_id=customer.acti…
    2025-04-161
  • Emberjs Stripe 与 stripeToken 的集成帖子

    EmberjsStripeintegrationpostwithstripeToken我正在尝试将Stripe集成到我的Ember应用程序中,但当初始卡片收集帖子完成时我遇到了障碍。Stripe尝试发布围绕的表单<form{{action"charge"on="submit"}}method="POST"><inputtype="hidden"name="plan"{{bind-…
    2024-11-171
  • Exchange_Token 失败并出现异常

    Exchange_Tokencallwith.netclientonPlaidAPIfailingwithexception我正在尝试调用Plaid测试环境以使用C#客户端将Stripe与Plaid集成。但是我无法交换令牌,而我可以使用curl客户端成功完成。代码超级简单。publicasyncTask<string>ExchangeToken(stringpublicToken,st…
    2024-10-221
  • Stripe Checkout 价格错误 – Invalid Integer

    StripeCheckoutPriceerror-InvalidInteger我有一个条带帐户,并且正在使用测试API密钥。我创建了一个包含以下信息的计划-{"amount":995,"created":1418800758,"currency":"usd","id":"c06e1791-1c6a-45fe-9c26-8f0c07dda967","interval":"month","interv…
    2024-10-031
  • 如何进行付款 Intent 以在 Stripe 中向已连接的帐户收费

    HowtomakeapaymentIntenttochargeaconnectedaccountinStripe我想创建一个StripePaymentIntent,直接向关联的账户收费这是我写的stripe.paymentIntents.create({amount:2000,currency:'gbp',payment_method:'pm_xxxx',},{stripe_account:'ac…
    2024-09-161
  • Laravel Cashier 和 Stripe:如何将订阅绑定到资源

    LaravelCashierandstripe:howtotiesubscriptionstoresources我正在尝试设置基于订阅的服务,拥有结算帐户的公司可以为在其公司注册的每个单独场所创建一个订阅。这个想法是使用用户模型的公司所有者具有可计费特征并且可以为每个场所创建订阅。公司可以根据需要创建任意数量的场所,但必须为他们为公司注册的每个场所单独付费。场地可以拥有的订阅类型是每月、每年或试用…
    2024-08-141