gpt4 book ai didi

node.js - 使用nodejs调用Stripe API获取total_count

转载 作者:太空宇宙 更新时间:2023-11-03 21:59:46 24 4
gpt4 key购买 nike

我使用 Stripe 和 Nodejs 来获取所有费用的列表,结果中包含了总计数。我这样调用它:

stripe.charges.list({include: ['total_count'] }, cb)

但是我从 API 收到以下错误:

Unhandled rejection Error: Invalid array

(省略 include 参数会返回正常结果。)

我是否错误地指定了 include 参数?

最佳答案

我刚刚尝试了一下,这段代码按预期工作:

stripe.charges.list(
{ limit: 3 , "include[]": "total_count"},
function(err, charges) {
console.log("Charges : ", JSON.stringify(charges));
}
);

关于node.js - 使用nodejs调用Stripe API获取total_count,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29960243/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com