1

我想知道为什么我会收到一次付款的多个 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
}
4

2 回答 2

3

我想到了两个可能性:

  1. 如果您的处理脚本返回 HTTP 错误,PayPal 会重试通知。
  2. 对于某些交易,PayPal 会发送多个通知。就像支票一样。或者当交易后来被取消/退款/撤销时。您需要为此检查付款状态字段。
于 2013-04-15T12:29:03.260 回答
0

它看起来像一个非常旧的帖子,但我在 2019 年发现了同样的问题,您可以通过添加来简单地解决这个问题

    header("HTTP/1.1 200 OK");

在代码的第一行添加 http 标头 200 ok。

于 2019-07-17T23:47:48.587 回答