简体   繁体   English

贝宝成功URL错误laravel

[英]paypal success url error laravel

I'm using laravel Omni plugin for transactions. 我正在使用laravel Omni插件进行交易。 Once payment has been done , I'm getting error for success url. 付款完成后,成功网址出现错误。

public function  checkOut(Request $request)
{
    $params = array(
                'cancelUrl'     => 'http://localhost/vis/public/cancel_order',
                'returnUrl'     => 'http://localhost/vis/public/payment_success',
                'name'      => 'Meal',
                'description'   => 'Casper',
                'amount'    => '1.00',
                'currency'  => 'USD'
            );

    Session::put('params', $params);
    Session::save();
    $gateway = Omnipay::create('PayPal_Express');
    $gateway->setUsername('un');
    $gateway->setPassword('pwd');
    $gateway->setSignature('signature');
    $gateway->setTestMode(true);
    $response = $gateway->purchase($params)->send();

    if ($response->isSuccessful()) {
        print_r($params);
        redirect('payment_success/' . $this->orderNo);
        // payment was successful: update database
        print_r($response);
    } elseif ($response->isRedirect()) {

        // redirect to offsite payment gateway
        $response->redirect();
    } else {
        // payment failed: display message to customer
        echo $response->getMessage();
    }
}

public function getSuccessPayment()
{
    $gateway = Omnipay::create('PayPal_Express');
    $gateway->setUsername('un');
    $gateway->setPassword('pwd');
    $gateway->setSignature('signature');
    $gateway->setTestMode(true);

    $params = Session::get('params');
    $response = $gateway->completePurchase($params)->send();
    $paypalResponse = $response->getData(); // this is the raw response object

    if(isset($paypalResponse['PAYMENTINFO_0_ACK']) && $paypalResponse['PAYMENTINFO_0_ACK'] === 'Success') {
        // Response
        print_r($params);
 //     print_r($paypalResponse);

    } else {

        //Failed transaction

    }
//  return View('result');
    print_r($params);
    print_r($paypalResponse);
}

I'm getting following error 我收到以下错误

Not Found HTTP Error 404. The requested resource is not found. 找不到HTTP错误404。找不到请求的资源。 http://localhost/vis/public/payment_success?token=EC-1R845179Asss493N&PayerID=swdw3BS9REA4AN http:// localhost / vis / public / payment_success?token = EC-1R845179Asss493N&PayerID = swdw3BS9REA4AN

It looks like you may have forgotten to add that route in the routes.php, Make sure you have something like this in routes.php 看来您可能忘记了在route.php中添加该路由,请确保在route.php中有类似的内容

Route::get('/payment_success', 'StoreController@getSuccessPayment');

Change StoreController to the name of the controller this function is in. 将StoreController更改为该函数所在的控制器的名称。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM