如何创建反复成功的网址?

时间:2015-11-25 05:40:45

标签: php recurly

我没有找到手动创建重复成功网址所需的信息。

http://example.com/index.php/register/KNhiaz?act=reg&account_code={{account_code}}&plan_code={{plan_code}}

我不知道如何获得account_code,当我订阅了recurly php客户端用户

// Specify the minimum subscription attributes: plan_code, account, and currency
                $subscription = new Recurly_Subscription();
                $subscription->plan_code = $plan_code;
                $subscription->currency = 'USD';

                // Create an account with a uniqid and the customer's first and last name
                $subscription->account = new Recurly_Account(uniqid());
                $subscription->account->first_name = esc_attr( $_POST['first_name'] );
                $subscription->account->last_name = esc_attr( $_POST['last_name'] );

                // Now we create a bare BillingInfo with a token
                $subscription->account->billing_info = new Recurly_BillingInfo();
                $subscription->account->billing_info->token_id = $_POST['recurly_token'];

                // Create the subscription
                $subscription->create();

1 个答案:

答案 0 :(得分:0)

我得到了答案。经过一些调试后,我发现帐户代码将是我的电子邮件ID,我将从用户自定义的重复表单中获取。 用户的电子邮件非常重要,因为通过此电子邮件ID,用户可以及时获得续订,发票等的时间通知。我个人认为向用户提供电子邮件ID以便日后沟通是好的。

在这里阅读: https://docs.recurly.com/hosted-payment-pages#account_code__username