0

我在沙盒中有以下工作

*无自动返回,无PDT返回;

*使用自动返回,使用 PDT 返回;

*IPN 正常工作

我想要使​​用的是不带 PDT 的自动返回,但是当设置自动返回时不发送 Get 或 Post 变量。我还检查了有关此主题的其他各种帖子,并设置了 rm=2。任何帮助表示赞赏

        $API_Endpoint = "https://api-3t.sandbox.paypal.com/nvp";
        $PAYPAL_URL = "https://www.sandbox.paypal.com/cgi-bin/webscr?";
        $newpost['business']='xxxxxxxxxx';
        $newpost['cancel_return']='http://localhost/cz/subscribe.php';
        $newpost['return']='https://www.xxxxxxxx/paypal/success_test.php';
        $newpost['cmd']='_donations';           //donation checkout
        $newpost['lc']='US';
        $newpost['rm']='2'; 
        $newpost['cbt']='Click to Set Subscriber Status';
        $newpost['currency_code']='USD';
        $newpost['button_subtype']='services';
        $newpost['no_note']='1';
        $newpost['no_shipping']='2';    //shipping address required
        $newpost['tax_rate']='0.000';
        $newpost['bn']='xxxxxxxx_BuyNow_WPS_US';
        $newpost['amount']=$prod[1];
        $newpost['item_name']=' Subscription';  //product name
4

1 回答 1

0

经过大量测试后,我发现 Paypal Sandbox 截至 2013 年 9 月 23 日在使用 CMD=_xclick 时使用 IPN 格式自动返回非 PAYPAL 帐户交易,但是在 CMD=_donation 上它坐在那里等到用户单击返回 mysite 按钮.

*当使用 CMD=_donation 处理 Paypal 帐户交易时,使用 IPN 格式的自动返回不会返回任何内容。*使用 CMD=_xclick 并允许它在 10 秒内返回有效,就像单击“如果您在 10 秒内未重定向,请单击此处。 "

我不知道这种行为是否在生产中发生,但它与 Paypal 文档的可读性相媲美,以清晰易懂。

于 2013-09-23T16:31:12.060 回答