使用PayPal HTML变量设置试用期间的结算频率

时间:2015-08-23 15:38:29

标签: paypal

我希望以具有特定结算频率(HTML Variables for Recurring Payments Buttons)的试用期实施经常性付款

示例:试用期,持续时间为三个月,每个月按一定的价格计费。这甚至可能吗?

试用期有三个变量:

a1: trial period price

p1: trial period duration

t1: trial period units of duration

如果我将持续时间设置为3,并将单位设置为M(月),并将价格设置为100美元,则PayPal将收取3个月合计的价格金额。但我需要经常性收费频率为1个月。因此,我需要PayPal在前三个月(试用期)每月向客户收取100美元。如何使用PayPal的经常性支付变量实现这一目标?

1 个答案:

答案 0 :(得分:0)

您可以提供的最接近的是两个试用期。订阅按钮不允许三个试用期。

这是因为如果您将第一次试用设置为3个月,那么您的客户将只收取100.00美元一次,然后三个月后试用期满。当它到期时,常规订阅值开始。

在第二个试用期内,您可以指定两个月的200美元,但您的客户最初将收取200.00美元的费用,然后两个月不再收费。

您可以提供最初的一个月试用期,您的客户在第一次试用时支付100.00美元,然后在第二次试用时支付200.00美元。

提供第二个试用期是最接近他们最初每月收取100.00美元的费用 以下是来自PayPal开发者网站的sample code略有修改:

<form action="https://www.paypal.com/cgi-bin/webscr" method="post">

<!-- Identify your business so that you can collect the payments. -->
<input type="hidden" name="business" value="alice@mystore.com">

<!-- Specify a Subscribe button. -->
<input type="hidden" name="cmd" value="_xclick-subscriptions">

<!-- Identify the subscription. -->
<input type="hidden" name="item_name" value="Alice's Monthly Digest">
<input type="hidden" name="item_number" value="DIG Monthly">

<!-- Set the terms of the 1st trial period. -->
<input type="hidden" name="currency_code" value="USD">
<input type="hidden" name="a1" value="100.00">
<input type="hidden" name="p1" value="1">
<input type="hidden" name="t1" value="M">

<!-- Set the terms of the 2nd trial period. Below is for a 2 month period  -->
<input type="hidden" name="a2" value="200.00">
<input type="hidden" name="p2" value="2">
<input type="hidden" name="t2" value="M">

<!-- Set the terms of the regular subscription. -->
<input type="hidden" name="a3" value="250.99">
<input type="hidden" name="p3" value="1">
<input type="hidden" name="t3" value="M">

<!-- Set recurring payments until canceled. -->
<input type="hidden" name="src" value="1">

<!-- Display the payment button. -->
<input type="image" name="submit" border="0"
src="https://www.paypalobjects.com/en_US/i/btn/btn_subscribe_LG.gif"
alt="PayPal - The safer, easier way to pay online">
<img alt="" border="0" width="1" height="1"
src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" >
</form>

如果您想了解有关设置两个试用期的详细信息,请参阅文档:
Setting Trial Periods