【发布时间】:2014-09-21 09:49:44
【问题描述】:
一位客户要求我将订阅按钮设置为非常明确地重新尝试失败的付款。使用的帐户是 Paypal 标准(不是 paypal 专业版),根据我的研究,只有 SRA variable 只能在 Paypal 设置的 5 天内切换预设的 3 次尝试,这太容易从我的客户的观点。他希望在接下来的 90 天内每 3 天重新尝试 30 次计费。 我只找到other people wondering the same thing,但还没有找到解决方案。我当前页面上的代码是这样的:
<form id='frmPayPalYearly' action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="xxxxxxxx">
<input type="hidden" name="custom" value="Standard Annual Member with id:<?php echo $user_id;?>">
<input type="hidden" name="invoice" value="03/2013/<?php echo $user_id;?>/12/<?php echo uniqid()?>">
<img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/btn/btn_subscribe_SM.gif" width="0" height="1">
</form>
如果我像这样添加 SRA:
<input type="hidden" name="sra" value="1">
如果我错了,请纠正我,但这会告诉 Paypal 重试 3 次。有什么方法可以让 Paypal 重试 30 次?
有人有什么想法吗?
【问题讨论】:
标签: paypal paypal-subscriptions