Omnipay Paypal Express 重定向显示重定向消息

Omnipay Paypal Express redirect displays redirecting message

我的支付网关中的 Omnipay 运行良好,但是当系统重定向到 PayPal 时,我在重定向到 PayPal 之前在屏幕上看到以下内容:

Redirecting to https://www.sandbox.paypal.com/cgi-bin/webscr?cmd=_express-checkout&useraction=commit&token=-=TOKEN IS HERE-

我想知道是否有人知道如何在没有中间页面的情况下停止页面显示并直接重定向到 PayPal。我的重定向代码如下:

$gateway=GatewayFactory::create('PayPal_Express');
$gateway->setUsername(['username']);
$gateway->setPassword(['password']);
$gateway->setSignature(['signature']);
$gateway->setTestMode(['testing']);

$totalamount=number_format(['ordertotal'],2);

try{
    $response=$gateway->purchase(
        array(
            'cancelUrl' =>  base_url('paymentMethod/'),
            'returnUrl' =>  base_url('paypalexpress/confirm'),
            'amount'    =>  $totalamount,
            'currency'  =>  'GBP'
        )
    )->send();

    if($response->isSuccessful()){
        print_r($response);
    }elseif($response->isRedirect()){
        $response->redirect();
    }else{
        echo $response->getMessage();
    }
}
catch(\Exception $e){
        $this->payment(1,$e->getMessage());
}
  1. 我建议您从 PayPal_Express 切换到 PayPal_Rest。以后你会找到更好的支持。

  2. 替换此代码:

    $response->redirect();

... 使用一些特定于您的框架的代码。例如,如果您使用 Laravel 或 Symfony,它们各自都有 RedirectResponse 类。您可以使用 $response->getRedirectUrl() 而不是使用 redirect() 方法(这是在您的屏幕上显示重定向 flash 的方法)从响应中获取重定向 URL。