ci_merchant贝宝购买它工作,但钱没有得到贝宝帐户
$this->load->library('merchant');
$this->merchant->load('paypal_express');
$settings = array(
'username' => '***************************',
'password' => '****************************',
'signature' => '***************************',
'test_mode' => true);
$this->merchant->initialize($settings);
$params = array(
'amount' => 100.00,
'currency' => 'USD',
'return_url' => 'http://127.0.0.1/freejoboard/index.php/empregos/payed',
'cancel_url' => 'http://127.0.0.1/freejoboard/index.php/empregos/canceled');
$response = $this->merchant->purchase($params);
paypal打开,我输入信用卡号,一切工作,当我支付重定向到付费网页,但钱从来没有得到商家测试帐户
确保您的凭证是正确的,并且根据您正在使用的凭证指向正确的环境。如果你能提供付款账户的电子邮件地址,付款账户的电子邮件地址以及你得到的交易ID,我可以检查一下我这边的交易情况。
您需要在数据库中记录付款后使用purchase_return()方法来确认付款。