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
以检查付款是否成功,并相应地更新您的数据库/行为。