我有一个网站,我想集成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_setupfeemonthly_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

10-06 04:34