简体   繁体   English

使用信用卡进行贝宝定期付款

[英]PayPal Recurring Payment Using Credit Card

I want to accept Recurring payments in PayPal using credit card. 我想使用信用卡在PayPal中接受定期付款。 I have created seller and buyer account in sandbox. 我已经在沙箱中创建了卖方和买方帐户。 I have updated seller account to pro account also. 我也将卖家帐户更新为专业帐户。 Simple Recurring payment with PayPal account is working fine. 使用贝宝(PayPal)帐户进行简单的定期付款可以正常工作。 I want to implement Recurring Payment with and without PayPal account. 我想使用和不使用PayPal帐户实施定期付款。 But its not showing me with credit card option. 但是它没有向我显示信用卡选项。

Please let me know how to fix this or is there any alternative option for it. 请让我知道如何解决此问题,或者有其他替代方法。

It appears there is some technical issue with your subscription button. 您的订阅按钮似乎存在一些技术问题。 Add one sample code for your reference or you could refer to the integration guide here . 添加一个示例代码以供参考,或者您可以在此处参考集成指南。

<form action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_xclick-subscriptions">
<input type="hidden" name="business" value="XXXX@XXX.com">
<input type="hidden" name="item_name" value="TMC membership fee">
<input type="hidden" name="item_number" value="1001">
<input type="hidden" name="no_note" value="1">
<input type="hidden" name="a1" value="1.00">
<input type="hidden" name="p1" value="1">
<input type="hidden" name="t1" value="M">
<input type="hidden" name="a2" value="2.00">
<input type="hidden" name="p2" value="1">
<input type="hidden" name="t2" value="M">
<input type="hidden" name="a3" value="3.00">
<input type="hidden" name="p3" value="1">
<input type="hidden" name="t3" value="M">
<input type="hidden" name="src" value="1">
<input type="hidden" name="currency_code" value="AUD">
<input type="hidden" name="bn" value="PP-SubscriptionsBF:btn_subscribeCC_LG.gif:NonHostedGuest">
<input type="image" src="https://www.paypalobjects.com/en_US/GB/i/btn/btn_subscribeCC_LG.gif" border="0" name="submit" alt="PayPal — The safer, easier way to pay online.">
<img alt="" border="0" src="https://www.paypalobjects.com/en_GB/i/scr/pixel.gif" width="1" height="1">
</form>

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

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