Paypal沙箱notify_url文件无效

时间:2013-10-24 15:54:21

标签: php paypal paypal-sandbox

有人可以告诉我这段代码有什么不对。

我正在尝试使用html表单与Paypal进行付款集成。我已经指定了notify_url,付款可以,但我无法进入此区块if (strcmp($res, "VERIFIED") == 0){}

// Response from Paypl
// read the post from PayPal system and add 'cmd'
$req = 'cmd=_notify-validate';
foreach ($_POST as $key => $value) {
    $value = urlencode(stripslashes($value));
    $value = preg_replace('/(.*[^%^0^D])(%0A)(.*)/i', '${1}%0D%0A${3}', $value); // IPN fix
    $req .= "&$key=$value";
}

// assign posted variables to local variables
$data['item_name'] = $_POST['item_name'];

// post back to PayPal system to validate
$header = "POST /cgi-bin/webscr HTTP/1.0\r\n";
$header .= "Content-Type: application/x-www-form-urlencoded\r\n";
$header .= "Content-Length: " . strlen($req) . "\r\n\r\n";

$fp = fsockopen('ssl://www.sandbox.paypal.com', 443, $errno, $errstr, 30);

if (!$fp) {
    // HTTP ERROR
    echo 'HTTP ERROR';
} else {

    file_put_contents('test1.txt', 'test');
    fputs($fp, $header . $req);
    while (!feof($fp)) {
        $res = fgets($fp, 1024);
        if (strcmp($res, "VERIFIED") == 0) {
            echo 'SUCCESS';
        } else if (strcmp($res, "INVALID") == 0) {                
            echo 'INVALID';
        }
    }
    fclose($fp);
}

1 个答案:

答案 0 :(得分:1)

使用CuRl方法返回POST数据而不是fsock这里是链接:https://developer.paypal.com/webapps/developer/docs/classic/ipn/ht_ipn/或我的建议是使用AngellaEye库,这对于Paypal集成更有效和有用,链接:http://www.angelleye.com/how-to-integrate-paypal-with-php-class-library/ 从这个链接下载它然后去吧。

相关问题