サンドボックス ペイパル アカウントを作成し、チュートリアル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);
}