Paypal返回URL

时间:2013-07-14 16:44:54

标签: paypal paypal-ipn

我需要允许重复订阅。到目前为止,它看起来不错,但Paypal并没有完全尊重“返回”隐藏变量值。它执行重定向,但它省略了提供的查询字符串。它确实添加了几个查询字符串变量,例如www.mysite.com?auth=XXXX&form_charset=YYYY

对于我的解决方案,如果可能的话,我想依赖查询字符串上的一些值。否则,我必须在Session中存储该临时信息。

有什么想法吗?

    <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="MerchantEmailAddress" />

        <input type="hidden" name="item_name" value="Description of Transaction">

        <input type="hidden" name="a3" value="5.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="custom" value="111.111111" />
        <input type="hidden" name="invoice" value="11" />

        <input type="hidden" name="cancel_return" value="http://www.MySite.com/?Cmd=Cancel"   />
        <input type="hidden" name="return" value="http://www.MySite.com/?Cmd=Return"   />
        <input name="notify_url" value="http://www.MySite.com/?Cmd=Notify" type="hidden">

        <!-- Display the payment button. -->
        <input type="image" name="submit" border="0" src="https://www.paypalobjects.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.paypalobjects.com/en_US/i/scr/pixel.gif">
    </form>

1 个答案:

答案 0 :(得分:1)

添加rm=2变量和值应该有效。这会告诉PayPal将信息作为POST发回。如果您在卖家帐户中启用了付款数据转移,则会覆盖rm值,而从PayPal返回到您网站的信息将始终为GET。