贝宝IPN通知接收多个通知的同一付款(PayPal IPN notification receivi

2019-10-18 00:37发布

我想知道为什么我收到多个IPN通知一次付款,我怎么能阻止这一切。 我想只保留一个通知。

// STEP 2: Post IPN data back to paypal to validate

//$ch = curl_init('https://www.paypal.com/cgi-bin/webscr');
$ch = curl_init('https://www.sandbox.paypal.com/cgi-bin/webscr');
curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $req);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 1);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
curl_setopt($ch, CURLOPT_FORBID_REUSE, 1);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Connection: Close'));

// In wamp like environments that do not come bundled with root authority certificates,
// please download 'cacert.pem' from "http://curl.haxx.se/docs/caextract.html" and set the directory path 
// of the certificate as shown below.
// curl_setopt($ch, CURLOPT_CAINFO, dirname(__FILE__) . '/cacert.pem');
if( !($res = curl_exec($ch)) ) {
    // error_log("Got " . curl_error($ch) . " when processing IPN data");
    curl_close($ch);
    exit;
}
curl_close($ch);

// STEP 3: Inspect IPN validation result and act accordingly

if (strcmp ($res, "VERIFIED") == 0) {

    // my stuff goes here

} else if (strcmp ($res, "INVALID") == 0) {
    // log for manual investigation
}

Answer 1:

二posibilities来到我的脑海:

  1. 贝宝试的通知,如果你处理脚本返回HTTP错误。
  2. 对于某些transations PayPal发送多个通知。 像检查。 或者,当交易被后来取消/退款/反转。 你需要检查付款状态字段为。


Answer 2:

它看起来像一个很老的文章,但我觉得这是同样的问题在2019年,你可以简单地通过增加解决这个问题

    header("HTTP/1.1 200 OK");

将HTTP标头200代码的第一行确定。



文章来源: PayPal IPN notification receiving multiple notification for the same payment