CI Merchantを使用すると、IPNの処理について自分で心配する必要がなくなります。そのため、多くの作業を行おうとしているために問題が発生していると思います:)
PayPal支払いを処理するための一般的なプロセスは、ここに概説されています:http: //ci-merchant.org/
まず、あなたがしているように、あなたはあなたのデータベースに支払いの記録を作ります。これは通常、テーブルとは別のものなorders
ので、テーブルなどを作成しtransactions
ます。トランザクションにステータスin_progress
または何かを与えます(データベースでは、詳細はあなた次第です)。
次に、実行中に支払い要求を作成します(paypal_express
古い非推奨のpaypal
ドライバーではなく、ドライバーを使用していることを確認してください)。
$this->load->library('merchant');
$this->merchant->load('paypal_express');
$params = array(
'amount' => $amount_dollars,
'currency' => 'CAD',
'description' => $paypal_description,
'return_url' => base_url('callback'),
'cancel_url' => base_url('callback-cancelled'));
$response = $this->merchant->purchase($params);
この時点で、応答に失敗がないか再確認します。成功した場合、ユーザーはすでにPaypalにリダイレクトされているはずです。
実行しようとしていること(通知URLでトランザクションを特定する)の場合の秘訣は、カスタムのreturn_urlを使用することです。例えば:
'return_url' => base_url('callback/transaction/'.$transaction_id),
これは、そのページでセグメント変数からトランザクションIDを取得できることを意味します。コールバックコントローラーは次のようになります。
// which transaction did we just complete
$transaction_id = $this->uri->segment(3);
// query database to find out transaction details
$transaction = $this->db->where('transaction_id', $transaction_id)->get('transactions')->row();
// confirm the paypal payment
$this->load->library('merchant');
$this->merchant->load('paypal_express');
// params array should be identical to what you passed to the `purchase()` method
// normally you would have some shared method somewhere to generate the $params
$params = array(
'amount' => $transaction->amount_dollars,
'currency' => 'CAD',
'description' => $transaction->description);
$response = $this->merchant->purchase_return($params);
この時点で$response
、支払いが成功したかどうかを確認するためにを検査し、それに応じてデータベース/行動を更新することができます。