首页 文章

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

提问于
浏览
0

我在我的网站中集成了定期付款部分:

<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>

但问题是付款后PayPal付款资料已过期 . 我也有一封邮件:

您已成功取消以下PayPal定期付款配置文件 . 我们将不再向买方收费 . 如果您未请求取消,请拨打免费电话1-888-221-1161联系PayPal客户支持 .

此外,我已经检查过我用来支付包裹的PayPal帐户,我看到这个定期付款的状态是“已过期” .

我的要求是订阅PayPal帐户,直到帐户持有人取消订阅 . 没有到期日期 .

1 回答

  • 1

    您将 src 设置为0,这意味着订阅付款不会再次发生 .
    此外,您可能还想查看 srtsra

    详细信息可在documentation中找到,但基本上 srt 确定了经常性期间的数量和 sra ,无论您是否希望我们在未收到账单后重新向买方收费 .

相关问题