因此,我不确定这是编码错误还是我对Stripe Connect流程的误解,但我尝试使用Stripe .NET包装器进行收费。我的代码如下:
int chargeAmount = 2014;
int appFee = 1986;
var stripeChargeOption = new StripeChargeCreateOptions()
{
AmountInCents = chargeAmount,
Currency = "cad",
Card = stripeToken.Id,
Description = "Your Purchase with Coupons4Giving - " + info.Merchant.Name,
ApplicationFeeInCents = appFee
};
var response = stripeService.Create(stripeChargeOption);
问题是当我去查看实际经历的内容时,这些值与我在此调用中指定的值不同。在条纹方面,它显示申请费为19.26美元(20.14美元减去条纹费用2.9%+ 0.30美元)。
有谁可以告诉我为什么我的申请费是20.14美元而不是我试图指定的19.86美元?
谢谢!
答案 0 :(得分:0)
事实证明,Stripe从总费用中扣除了申请费。我的错误是认为它将费用加到了这笔费用中,因此收取2.2美元费用的2美元费用将无效(费用降至2美元,因为这是最大的费用)。