【问题标题】:Can't do anything after receiving Paypal IPN收到 Paypal IPN 后无法执行任何操作
【发布时间】:2018-12-06 02:06:42
【问题描述】:

我在这里使用来自 github 的 Paypal 的两个 IPN 脚本:https://github.com/paypal/ipn-code-samples/tree/master/php 但是它们不起作用。

我在这里使用 Paypal 的工具发送测试 IPN:https://developer.paypal.com/developer/ipnSimulator/,它说它是成功的:“IPN 已发送,握手已验证。”

但是,在那之后我不能做我想做的事。我试过插入数据库,甚至只是发送成功电子邮件。单独完成时,这两个都可以正常工作,但是当我将其添加到 IPN 脚本时,没有任何反应。

PaypalIPN.php(从 gi​​thub 复制)

<?php
class PaypalIPN
{
/** @var bool Indicates if the sandbox endpoint is used. */
private $use_sandbox = false;
/** @var bool Indicates if the local certificates are used. */
private $use_local_certs = true;
/** Production Postback URL */
const VERIFY_URI = 'https://ipnpb.paypal.com/cgi-bin/webscr';
/** Sandbox Postback URL */
const SANDBOX_VERIFY_URI = 'https://ipnpb.sandbox.paypal.com/cgi- bin/webscr';
/** Response from PayPal indicating validation was successful */
const VALID = 'VERIFIED';
/** Response from PayPal indicating validation failed */
const INVALID = 'INVALID';
/**
 * Sets the IPN verification to sandbox mode (for use when testing,
 * should not be enabled in production).
 * @return void
 */
public function useSandbox()
{
    $this->use_sandbox = true;
}
/**
 * Sets curl to use php curl's built in certs (may be required in some
 * environments).
 * @return void
 */
public function usePHPCerts()
{
    $this->use_local_certs = false;
}
/**
 * Determine endpoint to post the verification data to.
 *
 * @return string
 */
public function getPaypalUri()
{
    if ($this->use_sandbox) {
        return self::SANDBOX_VERIFY_URI;
    } else {
        return self::VERIFY_URI;
    }
}
/**
 * Verification Function
 * Sends the incoming post data back to PayPal using the cURL library.
 *
 * @return bool
 * @throws Exception
 */
public function verifyIPN()
{
    if ( ! count($_POST)) {
        throw new Exception("Missing POST Data");
    }
    $raw_post_data = file_get_contents('php://input');
    $raw_post_array = explode('&', $raw_post_data);
    $myPost = array();
    foreach ($raw_post_array as $keyval) {
        $keyval = explode('=', $keyval);
        if (count($keyval) == 2) {
            // Since we do not want the plus in the datetime string to be encoded to a space, we manually encode it.
            if ($keyval[0] === 'payment_date') {
                if (substr_count($keyval[1], '+') === 1) {
                    $keyval[1] = str_replace('+', '%2B', $keyval[1]);
                }
            }
            $myPost[$keyval[0]] = urldecode($keyval[1]);
        }
    }
    // Build the body of the verification post request, adding the _notify-validate command.
    $req = 'cmd=_notify-validate';
    $get_magic_quotes_exists = false;
    if (function_exists('get_magic_quotes_gpc')) {
        $get_magic_quotes_exists = true;
    }
    foreach ($myPost as $key => $value) {
        if ($get_magic_quotes_exists == true && get_magic_quotes_gpc() == 1) 
    {
            $value = urlencode(stripslashes($value));
        } else {
            $value = urlencode($value);
        }
        $req .= "&$key=$value";
    }
    // Post the data back to PayPal, using curl. Throw exceptions if errors occur.
    $ch = curl_init($this->getPaypalUri());
    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_SSLVERSION, 6);
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 1);
    curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
    // This is often required if the server is missing a global cert bundle, or is using an outdated one.
    if ($this->use_local_certs) {
        curl_setopt($ch, CURLOPT_CAINFO, __DIR__ . "/cert/cacert.pem");
    }
    curl_setopt($ch, CURLOPT_FORBID_REUSE, 1);
    curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 30);
    curl_setopt($ch, CURLOPT_HTTPHEADER, array(
        'User-Agent: PHP-IPN-Verification-Script',
        'Connection: Close',
    ));
    $res = curl_exec($ch);
    if ( ! ($res)) {
        $errno = curl_errno($ch);
        $errstr = curl_error($ch);
        curl_close($ch);
        throw new Exception("cURL error: [$errno] $errstr");
    }
    $info = curl_getinfo($ch);
    $http_code = $info['http_code'];
    if ($http_code != 200) {
        throw new Exception("PayPal responded with http code $http_code");
    }
    curl_close($ch);
    // Check if PayPal verifies the IPN data, and if so, return true.
    if ($res == self::VALID) {
        return true;
    } else {
        return false;
    }
    }
}

这是我的 IPN 处理程序 URL,example_usage.php(也是从 github 复制的,我只是添加了发送电子邮件的一行,发送测试 IPN 时没有任何作用):

<?php namespace Listener;
require('PaypalIPN.php');
use PaypalIPN;
$ipn = new PaypalIPN();
// Use the sandbox endpoint during testing.
$ipn->useSandbox();
$verified = $ipn->verifyIPN();
if ($verified) {
    /*
     * Process IPN
     * A list of variables is available here:
     * 
https://developer.paypal.com/webapps/developer/docs/classic/ipn/integration- 
guide/IPNandPDTVariables/
     */


//THIS IS THE ONLY PART I HAVE ADDED, BUT NOTHING IS HAPPENING
$name = '' //Get name from form input
$email = '' //Get email from form input
$amount = '' //Get amount from hidden form input
$subject = 'New order from' . $name
$message = 'New order. Amount: ' . $amount

//For some reason this isn't being sent, even if I change $subject and $message to my own string.
$sendemail= mail("***@***.com", $subject, $message);

}
// Reply with an empty 200 response to indicate to paypal the IPN was 
received correctly.
header("HTTP/1.1 200 OK");

?>

有人知道问题出在哪里吗?如果是的话,谢谢

【问题讨论】:

  • 只要确保邮件功能在您的服务器上正常工作。在 localhost 上,它需要 sendmail 包才能工作。
  • 添加日志消息以查看 $verified 是真还是假。我想,这是错误的

标签: php paypal


【解决方案1】:

您需要确保 IPN 按预期触发,并被发送到您预期的 URL。

按照here 列出的步骤,您将能够找到问题所在,其中包括:

  1. 本地测试
  2. IPN 模拟器
  3. 沙盒事务测试
  4. 部署
  5. 其他故障排除技巧。

【讨论】:

    猜你喜欢
    • 2012-05-15
    • 2015-11-30
    • 1970-01-01
    • 2017-08-01
    • 2020-06-13
    • 2018-11-08
    • 2020-05-05
    • 2014-06-28
    • 2017-12-15
    相关资源
    最近更新 更多