使用paypal的商家图书馆付款表单。我已经有测试帐号了。我注意到点击后,当我登录到我的测试帐户中并立即点击付款时,继续付款重定向到sandbox.paypal.com和测试帐户网站。香港专业教育学院注意到钱没有用。我怎么能赚钱呢? 下面是我的代码
$settings = array(
'username'=>'test@test.com',
'password'=>'********',
'signature'=>'******************',
'test_mode'=>true
);
$this->merchant->initialize($settings);
$params = array(
'amount'=>19.95,
'currency'=>'USD',
'return_url'=>'http://localhost/test/payment/return_details/',
'cancel_url'=>'http://localhost/test/payment/create-job-listing/'
);
$response = $this->merchant->purchase($params);
if($response->success()){
// mark order as complete
$gateway_reference = $response->reference();
echo "<pre>";
print_r($gateway_reference);exit;
echo "</pre>";
}else{
$message = $response->message();
echo('Error processing payment: ' . $message);
exit;
}
}
和我的return_url代码
public function return_details(){
$id = $this->uri->segment(3);
print_r($id);exit;
}
我希望当我点击现在支付并在developer.paypal.com上查看我的测试帐户时,这笔款项可以使用。有人可以帮我解决这个问题吗?我坚持这个。非常感谢任何帮助。