条纹支付费用
Stripe payment charge
我想使用paymentMethod作为来源收取费用但它不收费,我如何使用支付方式获取token作为来源?我尝试使用
充电
\Stripe\Stripe::setApiKey('sk_test_**************');
\Stripe\Charge::create([
'amount' => $menuPrice*100,
'currency' => 'usd',
'customer' => $user->stripe_id,
'source' => 'pm_*************'
]);
收费是较旧的方式;新方法是付款意向(使用付款方式)。您可以在此处了解差异:https://stripe.com/docs/payments/payment-intents/migration
我想使用paymentMethod作为来源收取费用但它不收费,我如何使用支付方式获取token作为来源?我尝试使用
充电\Stripe\Stripe::setApiKey('sk_test_**************');
\Stripe\Charge::create([
'amount' => $menuPrice*100,
'currency' => 'usd',
'customer' => $user->stripe_id,
'source' => 'pm_*************'
]);
收费是较旧的方式;新方法是付款意向(使用付款方式)。您可以在此处了解差异:https://stripe.com/docs/payments/payment-intents/migration