我正在尝试从 stripe 返回所有产品和计划列表。
但是,即使active创建了产品,产品列表也会返回空。
function getProductsAndPlans() {
return Promise.all([
stripe.products.list({}),
stripe.plans.list({}),
]).then(stripeData => {
console.log('products', stripeData[0]) <-- this is empty
console.log('plans', stripeData[1]) <-- this returns plans
}).catch(err => {
console.error('Error fetching Stripe products and plans: ', err);
return [];
});
}
以下是我的 Stripe 仪表板中的产品:
计划返回:
但产品列表是空的:
这是条纹文档的副本。
const stripe = require('stripe')('sk_test_smkOYa912GSsdfdfDDfByiohm');
const products = await stripe.products.list({
limit: 3,
});
我在这里缺少什么?
慕沐林林
相关分类