如何运行特定的网址来偿还每周计划?

时间:2014-02-20 06:05:55

标签: php stripe-payments

我已经创建了条带支付网关的每周计划。我有以下代码为特定客户订阅特定计划:

$customer = Stripe_Customer::create(array(
            "card" => $token,
            "plan" => $PlanID,
            "email" => $email
            )
        );

此代码已成功运行,但是如果此计划将在一周后收费,那么如何才能在我的数据库中获得更新?

1 个答案:

答案 0 :(得分:0)

您可以使用Stripe Webhooks使数据库与Stripe保持同步。

https://stripe.com/docs/webhooks

我认为您需要倾听charge.succeeded事件。

https://stripe.com/docs/api#event_types