在paypal响应中获得零(0)?

时间:2015-06-22 07:05:32

标签: php paypal payment-gateway

我刚尝试将paypal支付网关集成到我的网站中。 为此,我已经按照指南中显示的所有步骤,我可以付款,它显示我成功的付款消息,我去了我的帐户,我也可以看到支付交易信息。但在paypal响应(后阵列) 我得到零(0)而不是数据。

首先,我在paypal中创建了一个开发者帐户, 然后通过我创建了一个业务和一个买方帐户。

这是我的代码

<form action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="post" accept-charset="utf-8">

        <input type="hidden" name="amount" value="21" readonly="" id="qty-1-amt">
        <input type="hidden" name="price" value="21">
        <input type="hidden" name="business" value="harsh-business@gmail.com">
        <input type="hidden" name="cmd" value="_xclick">
        <input type="hidden" name="item_name" value="Test Mobile">
        <input type="hidden" name="item_number" value="Test Item Number">

        <input type="hidden" name="currency_code" value="USD">

        <!-- Specify URLs -->
        <input type="hidden" name="cancel_return" value="http://paymentgateway.alphansotech.com/buyproducts">
        <input type="hidden" name="return" value="http://alphansotech.com/response.php">
        <ul>
            <li>Quantity: <input type="text" name="quantity" value="1" id="qty-1"> </li>
            <li><strong>Total: </strong>$ <span id="qty-1-span">21</span></li>
            <!--<li><input type="submit" name="submit" value="Buy"/></li>-->
            <li> <input type="image" name="submit" border="0" src="https://www.paypalobjects.com/en_US/i/btn/btn_buynow_LG.gif" alt="PayPal - The safer, easier way to pay online">
                <img alt="" border="0" width="1" height="1" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif"></li>
        </ul>
        </form>

1 个答案:

答案 0 :(得分:0)

根据上面的评论,您正在寻找错误位置的数据。您正在寻找$ _POST,而默认情况下,PayPal将返回值放在$ _GET中。你需要做两件事之一。之一:

1)将代码从使用$ _POST更改为$ _GET或

2)向PayPal发送值rm = 2(“)以请求PayPal将这些返回变量从GET参数移动到POST参数。这在此处记录:

https://developer.paypal.com/docs/classic/paypal-payments-standard/integration-guide/Appx_websitestandard_htmlvariables/