1
在IPN文檔的最後它說以下內容:PayPal IPN - 如果細節錯誤怎麼辦?
Important: After you have authenticated an IPN message (that is, received a VERIFIED response from PayPal), you must perform these important checks before you can assume that the IPN is both legitimate and has not already been processed:
1.Check that the payment_status is Completed.
2.If the payment_status is Completed, check the txn_id against the previous PayPal transaction that you processed to ensure the IPN message is not a duplicate.
3.Check that the receiver_email is an email address registered in your PayPal account.
4.Check that the price (carried in mc_gross) and the currency (carried in mc_currency) are correct for the item (carried in item_name or item_number).
什麼是你應該做的,如果這些檢查中的一個失敗?我們是否應該以某種方式調用PayPal API來「拒絕」交易?
謝謝 - 所以簡短的回答是「退還交易或聯繫PayPal進行欺詐嘗試」。關於何時以及如何聯繫PayPal,是否有任何指導原則?例如如果它每天超過x次? –