2016-12-09 1 views
1

장바구니 애플리케이션을 개발 중이며, 해당 애플리케이션에서 PayPal IPN을 통합하기로 결정했습니다. 그러나 INVALID가 계속 반환됩니다. 그것은 성공적으로 돈을 송금하고 내 계좌에서 공제되어 구매자의 계좌로 옮겨집니다.PayPal IPN이 지불을 보낸 후에도 INVALID를 반환합니다.

if (! count($_POST)) { 
    throw new \Exception("Missing POST Data"); 
} 
$raw_post_data = file_get_contents('php://input'); 
$raw_post_array = explode('&', $raw_post_data); 
$myPost = []; 
foreach ($raw_post_array as $keyval) { 
    $keyval = explode('=', $keyval); 
    if (count($keyval) == 2) { 
     // Since we do not want the plus in the datetime string to be encoded to a space, we manually encode it. 
     if ($keyval[0] === 'payment_date') { 
      if (substr_count($keyval[1], '+') === 1) { 
       $keyval[1] = str_replace('+', '%2B', $keyval[1]); 
      } 
     } 
     $myPost[$keyval[0]] = urldecode($keyval[1]); 
    } 
} 
// Build the body of the verification post request, adding the _notify-validate command. 
$req = 'cmd=_notify-validate'; 
$get_magic_quotes_exists = false; 
if (function_exists('get_magic_quotes_gpc')) { 
    $get_magic_quotes_exists = true; 
} 
foreach ($myPost as $key => $value) { 
    if ($get_magic_quotes_exists == true && get_magic_quotes_gpc() == 1) { 
     $value = urlencode(stripslashes($value)); 
    } else { 
     $value = urlencode($value); 
    } 
    $req .= "&$key=$value"; 
} 
// Post the data back to PayPal, using curl. Throw exceptions if errors occur. 
$ch = curl_init(self::VERIFY_URI); 
curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1); 
curl_setopt($ch, CURLOPT_POST, 1); 
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 
curl_setopt($ch, CURLOPT_POSTFIELDS, $req); 
curl_setopt($ch, CURLOPT_SSLVERSION, 6); 
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 1); 
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2); 
// This is often required if the server is missing a global cert bundle, or is using an outdated one. 

    curl_setopt($ch, CURLOPT_CAINFO, __DIR__ . "/cert/cacert.pem"); 

curl_setopt($ch, CURLOPT_FORBID_REUSE, 1); 
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 30); 
curl_setopt($ch, CURLOPT_HTTPHEADER, ['Connection: Close']); 
$res = curl_exec($ch); 
$info = curl_getinfo($ch); 
$http_code = $info['http_code']; 
if ($http_code != 200) { 
    throw new \Exception("PayPal responded with http code $http_code"); 
} 
if (! ($res)) { 
    $errno = curl_errno($ch); 
    $errstr = curl_error($ch); 
    curl_close($ch); 
    throw new \Exception("cURL error: [$errno] $errstr"); 
} 
curl_close($ch); 
// Check if PayPal verifies the IPN data, and if so, return true. 
if ($res == "VERIFIED") { 
    return 'success'; 
} else { 
    return print_r($res, true); 
    } 

입력과 출력이 완전히 동일합니다. 그러나이 특정 키는 다릅니다.

입력 : [payment_date] => 2016-12-09T15:07:18Z OUTPUT : payment_date=2016-12-09T14%3A12%3A21Z (쿼리가 만들어진 후).

+0

아래 코드로 대체, 두 번 할 필요가 없습니다 기록 및 POST 데이터가 Paypal로 전송됩니다. 그러면 잘못된 것을 파악하거나 여기에서 공유 할 수 있습니다. –

+0

나는 관찰했다. 나는 그것을 여기에서 나눌 수있다. 일초. –

+0

@DavidNguyen 지금 확인하십시오. 업데이트 됨. –

답변

0

나는이 같은 오류가 어제 발생했습니다. 다음을 시도해보십시오 :

$tokens = explode("\r\n\r\n", trim($res)); 
$res = trim(end($tokens)); 

    if (strcmp($res, "VERIFIED") == 0) { 
     return "Success"; 
    }else if (strcmp($res, "INVALID") == 0) { 
     //deal with invalid IPN 
     //mail admin or alert client 
} 

페이팔 IPN 변수가 이미 인코딩 및 IPN에 전송되는 당신은 데이터를 볼 필요가

if(function_exists('get_magic_quotes_gpc') && get_magic_quotes_gpc()){ 
    $varvalue = urlencode(stripslashes($varvalue)); 
} 
else { 
    $value = urlencode($value); 
} 
+0

계속해서 INVALID라고 말합니다. –

+0

전체 소스를 제공 할 수 있습니까? –

+0

내 업데이트 된 답변 확인 Hassan – Akintunde007

관련 문제