2016-11-06 5 views
3

私は彼らも多くの人々を見つけたと想像している問題があります。私は自分のサイトにPayPal支払いシステムを統合しようとしていますが、私はIPNにいくつか問題があります。私はgithubのペイパルで見つかった、このコードを試してみました:IPN Paypalの "公式の"サンプルコードは動作しません

<?php require('PaypalIPN.php'); 
use PaypalIPN; 
$ipn = new PayPalIPN(); 
// Use the sandbox endpoint during testing. 
$ipn->useSandbox(); 
$verified = $ipn->verifyIPN(); 
if ($verified) { 

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

必要なクラス:

<?php 
class PaypalIPN 
{ 
    private $use_sandbox = false; 
    private $use_local_certs = true; 
    /* 
    * PayPal IPN postback endpoints 
    */ 
    const VERIFY_URI = 'https://ipnpb.paypal.com/cgi-bin/webscr'; 
    const SANDBOX_VERIFY_URI = 'https://ipnpb.sandbox.paypal.com/cgi-bin/webscr'; 
    /* 
    * Possible responses from PayPal after the request is issued. 
    */ 
    const VALID = 'VERIFIED'; 
    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; 
    } 
    /** 
    * 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 = []; 
     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, ['Connection: Close']); 
     $res = curl_exec($ch); 
     $info = curl_getinfo($ch); 
     $http_code = $info['http_code']; 
     if ($http_code != 200) { 
      throw new Exception("PayPal responded with http code $http_code"); 
     } 
     if (! ($res)) { 
      $errno = curl_errno($ch); 
      $errstr = curl_error($ch); 
      curl_close($ch); 
      throw new Exception("cURL error: [$errno] $errstr"); 
     } 
     curl_close($ch); 
     // Check if paypal verfifes the IPN data, and if so, return true. 
     if ($res == self::VALID) { 
      return true; 
     } else { 
      return false; 
     } 
    } 
} 

私はIPNシミュレーターでテストするとき、私は次の応答を得る:IPNは送信されませんでした、そして握手はありませんでした確認されました。あなたの情報を確認してください。誰か助けてくれますか?あなたの例のコードから

答えて

3

<?php require('PaypalIPN.php'); 
^^^ /** This will cause your script to fail.**/ 

あなたはPayPalのIPN受入ページでPHPの周りNO空白を持つ必要があります。 PayPalのクラスカールが試してみて、そのPEMファイルを使用しないように、あなたは自分のcacert.pemファイルをインストールしていない場合は


は、あなたはクラスの設定を調整する必要があります。

private $use_local_certs = false; // set to true when you have the 
            // file in your server filesystem 

オンあなたが実行するシミュレーションのタイプとしてWeb-acceptを選択する必要があるIPNシミュレータ。


requiredファイルはありますか?ファイルはあなたのコードによってIPNリスナーファイルと同じフォルダに置かれます。これはそうですか?そのファイルが見つからない場合、スクリプトは失敗します。


これらの詳細で修正されている場合や追加する必要がある場合はお知らせください。

+0

プライベート$ use_local_certs = false;それは仕事です!ありがとうございました! –

+0

@ParmaLiberaはいいです!私の答えの横にある目盛りにチェックを入れることができれば、それは素晴らしいだろう:)。他のニュースでは、 '.pem'ファイルをPaypal Githubからダウンロードしてサーバーにアップロードして保存し、変数を' true'に設定すると、支払い接続を安全に保つことができます: '' '' 。また、PaypalIPNクラスの106行目のパス参照をチェックする必要があります。 – Martin

関連する問題