【问题标题】:how to transfer amount from stripe to account in nodejs?如何将金额从条带转移到nodejs中的帐户?
【发布时间】:2017-06-01 22:46:56
【问题描述】:

我正在使用 Stripe 支付网关,我需要将金额从 Stripe 账户转移到银行账户 我读了这份文件, https://stripe.com/docs/api#account_create_card

我将此代码用于 nodejs

var stripe = require("stripe")(
 "sk_**********************nUl"
);

stripe.accounts.createExternalAccount(
  "acct**************6Y",
  { external_account: "to**************52s" },
  function(err, card) {
    // asynchronously called
  }
);

我从 stripe 收到此错误,但我使用相同的密钥进行付款。

错误:提供的密钥“sk_test_********************unUl”在帐户“acct_19aqKGBABF9ppg6Y”上没有此端点所需的权限。拥有更多权限将允许此请求继续。

【问题讨论】:

    标签: node.js stripe-payments stripe-connect


    【解决方案1】:

    例如,如果您使用的 API 密钥对已连接的帐户具有只读访问权限,则可能会发生这种情况。我建议写信给 Stripe 支持,以便有人可以直接查看您的帐户并提供具体建议!

    https://support.stripe.com/email/login

    【讨论】:

    • 嗨,@hpar,我需要将金额从 Stripe 转入银行账户,我遇到了流量问题,我不清楚 Stripe 文档,如果您知道,请回复我。
    猜你喜欢
    • 2016-12-14
    • 2023-04-06
    • 2016-08-12
    • 2018-08-05
    • 2021-01-29
    • 1970-01-01
    • 2019-04-18
    • 2022-01-11
    • 2013-12-03
    相关资源
    最近更新 更多