我需要paypal集成来支付订单。我已经做的是整合api http://ci-merchant.org/。它的工作方式就像它需要..去支付宝贝网站,给我选择支付,但在我按下付费按钮后,它只是重新定位到我的成功定义页面,并且offcourse不付款。这是我的paypal的PHP代码:
$this->load->library('merchant');
$this->merchant->load('paypal_express');
$settings = $this->merchant->default_settings();
$settings = array(
'username' => '*',
'password' => '*',
'signature' => '*',
'test_mode' => false,
'solution_type' => array('type' => 'select', 'default' => 'Sole', 'options' => array(
'Sole' => 'merchant_solution_type_sole',
'Mark' => 'merchant_solution_type_mark')),
'landing_page' => array('type' => 'select', 'default' => 'Billing', 'options' => array(
'Billing' => 'merchant_landing_page_billing',
'Login' => 'merchant_landing_page_login')));
$this->merchant->initialize($settings);
if(isset($_POST['pay'])){
$params = array(
'amount' => '0.20',
'currency' => 'USD',
'return_url' => 'pay/succesfull',
'cancel_url' => 'pay/cancel');
$response = $this->merchant->purchase($params);
if ($response->success()){
echo "paid sucesfuly";
}
else
{
$message = $response->message();
echo('Error processing payment: ' . $message);
exit;
}
这是打印屏幕,应该付费完成,但现在按下付款后,它只是到我的sucessfull网站。
答案 0 :(得分:2)
听起来你还没有完成这个过程。 Express Checkout的整个流程是......
听起来你已经得到了#1 - 4的照顾,甚至可能是#5,但是你已经失去了#6。在调用DECP之前,实际上不会发生任何事务。你必须错过那件作品。
答案 1 :(得分:1)
使用其他PayPal库查找解决方案并且工作正常,如果其他人需要它,则链接为https://github.com/jersonandyworks/Paypal-Library-by-RomyBlack。