简体   繁体   English

paypal定期付款状态“已过期”

[英]paypal recurring payment status “Expired”

I have integrated a recurring payment section in my site: 我在我的网站中集成了定期付款部分:

<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="charset" value="utf-8">
<input type="hidden" name="business" value="freelancecoachpro@gmail.com">
<input type="hidden" name="cmd" value="_xclick-subscriptions">
<input type="hidden" name="item_name" value="Total Connect">
<input type="hidden" name="item_number" value="6">
<input type="hidden" name="currency_code" value="USD">
<input type="hidden" name="a3" value="0.59">
<input type="hidden" name="p3" value="1">
<input type="hidden" name="t3" value="M"> <!-- Set recurring payments until canceled. -->
<input type="hidden" name="custom" value="1385616401:1:6:b09c926d4df9a5f17221e56cbe688297">
<input type="hidden" name="return" value="http://119.18.51.11/freelancecoach/thank-you">
<input type="hidden" name="cancel_return" value="">
<input type="hidden" name="lc" value="US">
<input type="hidden" name="notify_url" value="http://119.18.51.11/freelancecoach/paymentreturn/paypalexpress">
<input type="hidden" name="src" value="0"><!-- Display the payment button. -->
<input type="image" name="submit" border="0" src="https://www.paypal.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.paypal.com/en_US/i/scr/pixel.gif">
</form>

But the issue is that the PayPal payment profile has been expired after the payment. 但问题是付款后PayPal付款资料已过期。 Also i have got a mail that is : 我也收到了一封邮件:

You successfully canceled the following PayPal Recurring Payment profile. 您已成功取消以下PayPal定期付款配置文件。 We will no longer bill the buyer. 我们将不再向买方收费。 If you did not request this cancellation, contact PayPal Customer Support toll-free at 1-888-221-1161. 如果您未请求取消,请拨打免费电话1-888-221-1161联系PayPal客户支持。

Also, I have checked the PayPal account which I used to pay for the package, and I saw the status of this recurring payment is “expired”. 此外,我已经检查过我用来支付包裹的PayPal帐户,我看到这个定期付款的状态是“已过期”。

My requirement is to subscribe the PayPal account until the subscription cancelled by the account holder. 我的要求是订阅PayPal帐户,直到帐户持有人取消订阅。 There is no expiring date. 没有到期日期。

You're setting src to 0, which means subscription payments do not recur. 您将src设置为0,这意味着订阅付款不会再次发生。
Additionally, you'll probably also want to look at srt and sra 另外,你可能也想看看srtsra

Details are available in the documentation , but basically srt determines the number of recurring periods and sra whether or not you'd like for us to reattempt charging the buyer after a failure to bill or not. 详细信息中提供的文件 ,但基本上srt确定重复周期数和sra您是否想为我们重新尝试失败的法案或无法充电后的买家。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM