在去爸爸paypal没有得到任何回应

时间:2015-01-29 06:15:54

标签: php curl paypal paypal-ipn

您好我在PHP中实现了paypal express Checkout API,在我的localhost上它成功运行但在Go daddy托管服务器上它不会显示任何内容,它只显示一个空白页面,它甚至不会在paypal页面上显示也不会显示任何错误信息。我想可能是卷曲请求或https响应是问题

这是我的卷曲请求。

$ch = curl_init();
        curl_setopt($ch, CURLOPT_URL, $API_Endpoint);
        curl_setopt($ch, CURLOPT_VERBOSE, 1);

        // Turn off the server and peer verification (TrustManager Concept).
        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
        curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);

        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
        curl_setopt($ch, CURLOPT_POST, 1);

        // Set the API operation, version, and API signature in the request.
        $nvpreq = "METHOD=$methodName_&VERSION=$version&PWD=$API_Password&USER=$API_UserName&SIGNATURE=$API_Signature$nvpStr_";

        // Set the request as a POST FIELD for curl.
        curl_setopt($ch, CURLOPT_POSTFIELDS, $nvpreq);

        // Get response from the server.
        $httpResponse = curl_exec($ch);

        if(!$httpResponse) {
            exit("$methodName_ failed: ".curl_error($ch).'('.curl_errno($ch).')');
        }

        // Extract the response details.
        $httpResponseAr = explode("&", $httpResponse);

        $httpParsedResponseAr = array();
        foreach ($httpResponseAr as $i => $value) {
            $tmpAr = explode("=", $value);
            if(sizeof($tmpAr) > 1) {
                $httpParsedResponseAr[$tmpAr[0]] = $tmpAr[1];
            }
        }

        if((0 == sizeof($httpParsedResponseAr)) || !array_key_exists('ACK', $httpParsedResponseAr)) {
            exit("Invalid HTTP Response for POST request($nvpreq) to $API_Endpoint.");
        }

    return $httpParsedResponseAr;

有关详细参考,请参阅代码i integrated

我确信卷曲请求或https响应中存在问题,请尽快指导我。

1 个答案:

答案 0 :(得分:0)

将它放在脚本的顶部。

error_reporting(E_ALL);
ini_set('display_errors', '1');

这将允许您查看正在发生的PHP错误。

您可能还想更改此内容...

if(!$httpResponse) {
            exit("$methodName_ failed: ".curl_error($ch).'('.curl_errno($ch).')');
        }

为...

    if($curl_error($ch)) { 
        exit("$methodName_ failed: ".curl_error($ch).'('.curl_errno($ch).')');
}

你拥有它的方式,如果有任何东西被带回$ httpResponse,它将被视为真实。但是,检查卷曲错误时,如果发生卷曲错误,将始终输出错误消息和编号。