我正在将 CI-Merchant 集成到 Codeigniter 项目中,以使用 Paypal 和 SagePay 处理付款。
我已经从http://ci-merchant.org/为 paypal_express 完成了演示,并且效果很好(或者至少在我使用示例代码时给了我一个正确的错误 - 请参见下面的带有 paypal 代码的响应)
Merchant_response Object
(
[_status:protected] => failed
[_message:protected] => Security header is not valid
[_reference:protected] =>
[_data:protected] =>
[_redirect_url:protected] =>
[_redirect_method:protected] => GET
[_redirect_message:protected] =>
[_redirect_data:protected] =>
)
我已经更新了 Sagepay 的代码,如下所示
public function index()
{
$this->load->helper('language');
$this->load->library('merchant');
$this->merchant->load('sagepay_direct');
$settings = array (
'vendor' => 'testvendor',
'test_mode' => FALSE,
'simulator_mode' => TRUE,
);
$this->merchant->initialize($settings);
$params = array(
'description'=>'Test purchase',
'currency'=>'GBP',
'transaction_id'=>'12345',
'email'=>'test@person.com',
'first_name'=>'Test',
'last_name'=>'Person',
'address1'=>'1 Random Avenue',
'address2'=>'Made Up Drive',
'city'=>'Notarealcity',
'postcode'=>'FA11 1KE',
'country'=>'UK',
'region'=>'',
'phone'=>'0101010101',
'amount'=>125.00,
'card_no'=>'4444444444444444',
'name'=> 'Mr Test',
'card_type' => 'VISA',
'exp_month'=> 11,
'exp_year'=> 15,
'csc'=> 999
);
$response = $this->merchant->purchase($params);
echo '<pre>';
print_r($response);
exit;
}
该代码的输出是
Merchant_response Object
(
[_status:protected] => failed
[_message:protected] =>
[_reference:protected] =>
[_data:protected] =>
[_redirect_url:protected] =>
[_redirect_method:protected] => GET
[_redirect_message:protected] =>
[_redirect_data:protected] =>
)
这并没有给我任何关于可能出现问题的信息。
我正在使用有效的供应商名称,并将服务器的 IP 地址输入到 SagePay 模拟器中,请求来自的页面是 https,请求来自的 URL 已添加到 sage 支付模拟器帐户部分。
看起来应该很好,但现在卡住了 - 我真的很感激这方面的任何帮助。
提前致谢
杰森