Paypal自适应支付PPHttpConnection.php中的PPConnectionException


Paypal Adaptive Payments PPConnectionException in PPHttpConnection.php

我目前尝试使用自适应支付sdk实现链式支付。我收到这个错误

PPConnectionException in PPHttpConnection.php line 91:
error:14094410:SSL routines:SSL3_READ_BYTES:sslv3 alert handshake failure

我的示例代码看起来像这个

$payRequest = new 'PayPal'Types'AP'PayRequest();
    $receiver = array();
    $receiver[0] = new 'PayPal'Types'AP'Receiver();
    $receiver[0]->amount = '7.50';
    $receiver[0]->email = "admin@example.de";
    $receiver[1] = new 'PayPal'Types'AP'Receiver();
    $receiver[1]->amount = '2.50';
    $receiver[1]->email = "seller@example.de";
    $receiver[1]->primary = "true";
    $receiverList = new 'PayPal'Types'AP'ReceiverList($receiver);
    $payRequest->receiverList = $receiverList;
    $requestEnvelope = new 'PayPal'Types'Common'RequestEnvelope("de_DE");
    $payRequest->requestEnvelope = $requestEnvelope;
    $payRequest->actionType = "PAY";
    $payRequest->cancelUrl = "http://example.de:8080/payment/cancel";
    $payRequest->returnUrl = "http://example.de:8080?returned";
    $payRequest->currencyCode = "EUR";
    $payRequest->ipnNotificationUrl = "http://example.de:8080";
    $sdkConfig = array(
        'mode' => 'sandbox',
        "acct1.UserName" => "jb-us-seller_api1.paypal.com",
        "acct1.Password" => "WX4WTU3S8MY44S7F",
        "acct1.Signature" => "AFcWxV21C7fd0v3bYYYRCpSSRl31A7yDhhsPUU2XhtMoZXsWHFxu-RWy",
        "acct1.AppId" => "APP-80W284485P519543T"
    );
    $adaptivePaymentsService = new 'PayPal'Service'AdaptivePaymentsService($sdkConfig);
    $payResponse = $adaptivePaymentsService->Pay($payRequest);
    if ($payResponse->responseEnvelope->ack == "Success")
    {
        redirect('Location: ' . 'https://sandbox.paypal.com/webscr?cmd=_ap-payment&paykey=' . $payResponse->payKey);
    }
    else{
        die('error');
    }

我找到的解决方案似乎不起作用。。。有什么想法吗?当前正在从localhost进行测试。

我不知道错误的实际解决方案或原因。

对我来说,修复它的方法是在实际的服务器上测试它,而不是在本地主机环境中测试。

我还将包更新到了最新版本,因为tls有很多变化。旧的例子没有引用工作库。