我在Sandbox中有以下工作
*没有自动反复返回,没有PDT;
*使用PDT返回Autodeturn;
* IPN正常运行
我想要使用的是没有PDT的Autoreturn,但是当设置时,Autoreturn不发送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
答案 0 :(得分:0)
经过大量测试后,我发现截至2013年9月23日的Paypal Sandbox在使用CMD = _xclick时使用IPN格式进行非PAYPAL帐户交易自动翻转,但是在CMD = _donation上它会等待用户点击返回到mysite按钮。
* 当使用CMD = _donation处理Paypal帐户交易时,使用IPN格式的自动回复不会返回任何内容。* 使用CMD = _xclick并允许它在十秒内返回工作,就像点击“如果你没有在10秒内重定向,请点击此处。“
我不知道这种行为是否会在制作中发生,但它可以与Paypal文档的可读性相媲美,以便清晰和理解。