我正在尝试连接到条带并检索优惠券,但无法。如果我运行其中任何一个,我都会收到错误消息。
Stripe.Coupons.retrieve(couponId, {
success: function(coupon) {
logger.log('debug', "coupon found", coupon);
return callback(coupon, null);
},
error: function(error) {
logger.log('debug', "coupon not found", error);
return callback(null, error);
}
});
我收到一个错误 - invalid_request_error
或者
Stripe.Coupons.retrieve({
couponId: couponId
}, {
success: function(coupon) {
logger.log('debug', "coupon found", coupon);
return callback(coupon, null);
},
error: function(error) {
logger.log('debug', "coupon not found", error);
return callback(null, error);
}
});
我收到一个错误 - 需要优惠券 ID
似乎没有任何关于如何完成此任务的好的文档。