1

1 回の支払いに対して複数の IPN 通知を受け取る理由と、これを停止する方法を知りたいです。通知を 1 つだけ残しておきたい。

// 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

2つの可能性が頭に浮かびました:

  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 に答える