Stripe用PHP创建客户和经常性费用
作者:互联网
我有一个网站,我想集成Stripe支付网关,当用户注册我想在Stripe上创建一个客户并向他们收取第一个月的费用,例如100美元,从下个月开始我想向他们收取50美元.
如何创建客户,然后同时为他们充电并设置定期付款,到目前为止我只能找到有关一次性付款系统的信息:
$charge = \Stripe\Charge::create(
array(
"amount" => $amount,
"currency" => "usd",
"source" => $token,
"description" => $email
)
);
对于定期付款,我是否必须在cron中运行此代码或者有更好的方法吗?
提前致谢.
编辑:
我使用以下代码首先创建客户,然后使用他们的费用ID向该客户收费:
//Create Customer:
$customer = \Stripe\Customer::create(array(
'source' => $token,
'email' => $_POST['email'],
'plan' => "monthly_recurring_setupfee",
));
// Charge the order:
$charge = \Stripe\Charge::create(array(
'customer' => $customer->id,
"amount" => $amount,
"currency" => "usd",
"description" => "monthly payment",
)
);
这似乎有效.
另一个问题:我创建了两个计划monthly_recurring_setupfee和monthly_recurring,之前的计划包含我想要收取的金额加上一次设置费用,后面的计划包含我将从第二个月收取的常规金额,我在想在注册时为用户分配monthly_recurring_setupfee计划,如果付款成功,则将用户的计划更改为monthly_recurring,这可能吗?
解决方法:
我找到了一种创建客户的方法,将他们注册到计划中并向他们收取一次性安装费.这是我使用的代码:
$customer = \Stripe\Customer::create(array(
'source' => $token,
'email' => $billing_email,
'plan' => $stripePlan,
'account_balance' => $setupFee,
'description' => "Charge with one time setup fee"
));
这将向他们收取一次设置费用’account_balance’=> $setupFee,将它们注册到计划中,并向他们收取计划金额.
Stripe one-time subscription fee
标签:php,stripe-payments,payment-gateway 来源: https://codeday.me/bug/20190724/1527322.html