贝宝订阅 API

PayPal Subscription API

我想通过 PayPal 设置一个基于订阅的支付系统。我目前正在使用 PayPal 的 api 来处理我的一些物品和一个 IPN 侦听器。代码如提供:

<form name="_xclick" action="https://www.paypal.com/us/cgi-bin/webscr" class="form-horizontal" method="post" id="paypalformhidden">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" value="sales@example.com">
<input type="hidden" name="currency_code" value="USD">
<input type="hidden" id="ppname" name="item_name" value='Large Brwon Teddy Bear' />
<input type="hidden" name="item_name1" value='Ted' />
<input type="hidden" name="notify_url" value="example.com/listener.php">
<input type="hidden" name="return" value="example.com"/>
<input type="hidden" id="ppamount" name="amount" value='39.00'>

本以为订阅就这么简单,但似乎不太友好。我想要一些意见!

_xclick 命令用于 "Buy Now" 按钮。订阅按钮有不同的命令值。您可以在 PayPal 的开发者网站上阅读有关设置订阅按钮的更多信息:https://developer.paypal.com/docs/classic/paypal-payments-standard/integration-guide/subscribe_buttons/#id08ADF1008HS

请检查这里是我用过的最好的例子:

https://github.com/thenbrent/paypal-digital-goods/blob/master/paypal-subscription.class.php