gpt4 book ai didi

laravel-5 - Laravel 5.3 - Omnipay Paypal Express 不返回成功消息

转载 作者:太空宇宙 更新时间:2023-11-03 16:06:06 25 4
gpt4 key购买 nike

我是 Laravel 的新手。几天来,我一直在努力在我的网站上实现 Paypal Express Checkout,以便能够向非营利组织捐款。感谢these explanations我已经能够安装 Omnipay,让用户输入他想要捐赠的金额并转到 Paypal。但是,当我尝试结束交易(支付)时,我没有被重定向到我的成功消息。我的沙盒账户也没有显示任何交易,所以似乎付款没有正确完成。我猜我的“getSuccessPayment”函数有问题,但我不知道是什么...

到目前为止,这是我的 Controller :

<?php namespace App\Http\Controllers;
use Omnipay\Omnipay;
use Session;
use App\Http\Requests\PaymentRequest;

class PaymentController extends Controller {

public function postPayment(PaymentRequest $request)
{
$price = $request->get('price');

$items[] = array('name' => 'Don', 'quantity' => 1, 'price' => $price);

$params = array(
'cancelUrl'=>url('/donner'),
'returnUrl'=>url('/payment_success'),
'amount' => $price,
'currency' => 'EUR'
);

Session::put('params', $params);
Session::save();

$gateway = Omnipay::create('PayPal_Express');
$gateway->setUsername('my sandbox email');
$gateway->setPassword('my sandbox password');
$gateway->setSignature('my sandbox signature');
$gateway->setTestMode(true);

$response = $gateway->purchase($params)->setItems($items)->send();

if ($response->isSuccessful()) {
print_r($response);
} elseif ($response->isRedirect()) {
$response->redirect();
} else {
echo $response->getMessage();
}
}

public function getSuccessPayment()
{

$gateway = Omnipay::create('PayPal_Express');
$gateway->setUsername('my sandbox email');
$gateway->setPassword('my sandbox password');
$gateway->setSignature('my sandbox signature');
$gateway->setTestMode(true);

$params = Session::get('params');
$response = $gateway->completePurchase($params)->send();
$paypalResponse = $response->getData();

if(isset($paypalResponse['PAYMENTINFO_0_ACK']) && $paypalResponse['PAYMENTINFO_0_ACK'] === 'Success') {
return redirect('/payment_success');

} else {
//payment fails
return redirect('/payment_failure');

}
}
}
?>

还有我的路线:

Route::post('donner',
['as' => 'payment', 'uses' => 'PaymentController@postPayment']);

Route::get('payment_success', 'PaymentController@getSuccessPayment');

Route::get('payment_failure', 'PaymentController@getSuccessPayment');

最佳答案

创建网关参数时,您将 /donner 作为 returnUrl 传递,这是您的用户在完成 PayPal 快速登录和付款确认后返回的位置,因此Laravel 会查看你没有的 Route::get('donner'... 路线,将其更改为 'returnUrl'=>url('/payment_success'), 会将您的用户带回您的成功路线,并允许您提交 completePurchase 调用。

根据已编辑的问题和评论编辑更多详细信息:

如果客户成功完成 PayPal 登录和结帐屏幕,他们将返回到您的 returnUrl,如果他们出于任何原因退出该过程,他们将转到 cancelUrl

在您的 PaymentController@getSuccessPayment 方法中,paypal 将在查询字符串 (www.example.com/payment_success) 中发回 tokenpayerID ?token=EC-12345&PayerID=ABC123,omnipay-paypal 将在 completePurchase 调用中自动获取此信息,您可以在该调用中有效地向 PayPal 确认客户已正确完成结帐并且交易已完成成功。

为避免混淆,我会将您当前的 Route::get('payment_success', 'PaymentController@getSuccessPayment'); 路线重命名为 Route::get('complete_payment', 'PaymentController@getCompletePayment'); 并创建一个新的 payment_success 路由,在您使用 PayPal 确认付款状态后将用户发送到该路由。

关于laravel-5 - Laravel 5.3 - Omnipay Paypal Express 不返回成功消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42246303/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com