我创建了一个沙盒 paypal 帐户并使用教程http://www.micahcarrick.com/paypal-ipn-with-php.html中的 IPNListener 。在我的代码中,在验证贝宝响应后,尝试重定向到动态 url。paypal支付成功后,没有重定向到动态url
include('ipnlistener.php');
$listener = new IpnListener();
$listener->use_sandbox = true;
$listener->use_ssl = false;
try {
$listener->requirePostMethod();
$verified = $listener->processIpn();
} catch (Exception $e) {
error_log($e->getMessage());
exit(0);
}
$url1="http://www.google.com";
$url2="http://www.ayond.se";
if ($verified) {
header('Location: '.$url1);
}
else
{
header('Location: '.$url2);
}