我正在尝试使用带有条带测试帐户的带有node.js的条带的createExternalAcccount方法来引用银行帐户令牌。我收到类似“错误:只有活动键才能访问此方法”的错误。
stripe.accounts.createExternalAccount(
'acct_**************Wu',
{external_account: 'btok_**********************pw'},function(err,account){
if (err) throw err;
console.log(account);
}
);
答案 0 :(得分:0)
如果您想使用真实账户进行真实交易,则需要使用实时模式键(当前正在使用测试模式键)。
如果要在测试模式下测试银行帐户(ACH)交易,则应see this guide。