如何在paypal中自定义信用卡付款

时间:2016-01-19 06:28:49

标签: php paypal credit-card

我已经通过sandbox.Paypal帐户进行了付款,我已经为信用卡付款创建了单独的菜单 我已经为信用卡付款创建了单独的菜单

enter image description here 在用户填写这些详细信息后,我不想显示Paypal页面。必须检查Paypal中的详细信息并重定向到success.php,但我没有得到如何做到这一点。任何人都可以告诉我吗?

这里有dodirectpayment流程

<div class="btn btn-primary">
<form method="post" action="https://api-3t.sandbox.paypal.com/nvp">
<input type="hidden" name="USER" value="username"/>
<input type="hidden" name="PWD" value="password"/>
<input type="hidden" name="SIGNATURE" value="api signature"/>
<input type="hidden" name="METHOD" value="DoDirectPayment"/>
<input type="hidden" name="PAYMENTACTION" value="Authorization"/>
<input type="hidden" name="IPADDRESS" value="192.168.1.12"/>
<input type="hidden" name="VERSION" value="86.0"/>
<input type="hidden" name="CREDITCARDTYPE" value="VISA"/>
<input type="hidden" name="ACCT" value="4641631486853053"/>
<input type="hidden" name="EXPDATE" value="052015"/>
<input type="hidden" name="CVV2" value="123"/>
<input type="hidden" name="AMT" value="23.00"/>
<input type="hidden" name="CURRENCYCODE" value="USD"/>
<input type="hidden" name="FIRSTNAME" value="James"/>
<input type="hidden" name="LASTNAME" value="smith"/>
<input type="hidden" name="STREET" value="firstStreet"/>
<input type="hidden" name="CITY" value="SanJose"/>
<input type="hidden" name="STATE" value="CA"/>
<input type="hidden" name="Zip" value="95131"/>
<input type="hidden" name="COUNTRYCODE" value="US"/>
<button class="btn">pay 2</button>
</form>
</div>

             Result:TIMESTAMP=2016%2d01%2d19T07%3a49%3a33Z&CORRELATIONID=8e30307764193&ACK=Failure&VERSION=86%2e0&BUILD=18308778&L_ERRORCODE0=10002&L_SHORTMESSAGE0=Security%20error&L_LONGMESSAGE0=Security%20header%20is%20not%20valid&L_SEVERITYCODE0=Errorstrong text

我在其他菜单中完成了Paypal,我需要使用Paypal单独的信用卡/借记卡付款查看详细信息,但没有显示Paypal页面

1 个答案:

答案 0 :(得分:0)

因为你想要做什么,是一个paypal NVP授权和捕获。通过将表单发布到paypal,您将无法获得您想要的结果。

您需要做的是使用NVP和cURL直接付款

你会发现更多关于它的信息 @ https://developer.paypal.com/docs/classic/paypal-payments-pro/integration-guide/WPDPGettingStarted/
请查看标题为&#34;实施最简单的直接付款整合&#34;

的部分

注意**
我推荐paypals SDK。对于你想要实现的目标,看看这个例子是多么简单,这个例子是@ https://github.com/paypal/PayPal-PHP-SDK/blob/master/sample/payments/CreatePayment.php