2014-08-27 121 views
1

正如标题所述,我遇到了Paypal问题,并且IPN返回已通过订阅支付方式进行验证。对于我迄今为止所完成的每个订阅IPN,它都已返回INVALID与数据。事情是,对于相同的确切代码,将按钮从_xclick-subscriptions更改为_donations例如给我一个VERIFIED结果。Paypal订阅IPN退回无效

我一直在寻找一些时间来解决我的问题,但我一直无法找到一个。这就是发生了什么 - 我已经创建了订阅按钮,该按钮引导用户到PayPal(在这种情况下,沙箱),然后他们付费,并在他们付费后,他们可以选择返回到网站。这是按钮的代码。

<form action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="post"> 
<input type="image" src="https://www.paypal.com/en_US/i/btn/x-click-but20.gif" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!"> 
<input type="hidden" name="cmd" value="_xclick-subscriptions"> 
<input type="hidden" name="business" value="[email protected]"> 
<input type="hidden" name="item_name" value="Monthly Sub"> 
<input type="hidden" name="no_note" value="1"> 
<input type="hidden" name="currency_code" value="USD"> 
<input type="hidden" name="a3" value="10.00"> 
<input type="hidden" name="p3" value="1"> 
<input type="hidden" name="t3" value="M"> 
<input type="hidden" name="src" value="1"> 
<input type="hidden" name="sra" value="1"> 
<input type="hidden" name="rm" value="2"> 
<input type="hidden" name="return" value="http://url.com/thanks.php"> 
</form> 

因为这一直是一个体面的问题,对我来说我已经打破了按钮缩小到具有非常准系统所需的值,直到我能真正得到它返回验证,而不是无效的。 以下是我作为IPN侦听器的代码。

define("DEBUG", 1); 
define("USE_SANDBOX", 1); 
define("LOG_FILE", "./ipn.log"); 
// Read POST data 
// reading posted data directly from $_POST causes serialization 
// issues with array data in POST. Reading raw POST data from input stream instead. 
$raw_post_data = file_get_contents('php://input'); 
$raw_post_array = explode('&', $raw_post_data); 
$myPost = array(); 
foreach ($raw_post_array as $keyval) { 
    $keyval = explode ('=', $keyval); 
    if (count($keyval) == 2) 
     $myPost[$keyval[0]] = urldecode($keyval[1]); 
} 
// read the post from PayPal system and add 'cmd' 
$req = 'cmd=_notify-validate'; 
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 IPN data back to PayPal to validate the IPN data is genuine 
// Without this step anyone can fake IPN data 
if(USE_SANDBOX == true) { 
    $paypal_url = "https://www.sandbox.paypal.com/cgi-bin/webscr"; 
} else { 
    $paypal_url = "https://www.paypal.com/cgi-bin/webscr"; 
} 
$ch = curl_init($paypal_url); 
if ($ch == FALSE) { 
    return FALSE; 
} 
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_SSL_VERIFYPEER, 1); 
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2); 
curl_setopt($ch, CURLOPT_FORBID_REUSE, 1); 
if(DEBUG == true) { 
    curl_setopt($ch, CURLOPT_HEADER, 1); 
    curl_setopt($ch, CURLINFO_HEADER_OUT, 1); 
} 
// Set TCP timeout to 30 seconds 
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 30); 
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Connection: Close')); 
$res = curl_exec($ch); 
if (curl_errno($ch) != 0) // cURL error 
    { 
    if(DEBUG == true) { 
     error_log(date('[Y-m-d H:i e] '). "Can't connect to PayPal to validate IPN message: " . curl_error($ch) . PHP_EOL, 3, LOG_FILE); 
    } 
    curl_close($ch); 
    exit; 
} else { 
     // Log the entire HTTP response if debug is switched on. 
     if(DEBUG == true) { 
      error_log(date('[Y-m-d H:i e] '). "HTTP request of validation request:". curl_getinfo($ch, CURLINFO_HEADER_OUT) ." for IPN payload: $req" . PHP_EOL, 3, LOG_FILE); 
      error_log(date('[Y-m-d H:i e] '). "HTTP response of validation request: $res" . PHP_EOL, 3, LOG_FILE); 
      // Split response headers and payload 
      list($headers, $res) = explode("\r\n\r\n", $res, 2); 
     } 
     curl_close($ch); 
} 
// Inspect IPN validation result and act accordingly 
if (strcmp ($res, "VERIFIED") == 0) { 
    if(DEBUG == true) { 
     error_log(date('[Y-m-d H:i e] '). "Verified IPN: $req ". PHP_EOL, 3, LOG_FILE); 
    } 
} else if (strcmp ($res, "INVALID") == 0) { 
    if(DEBUG == true) { 
     error_log(date('[Y-m-d H:i e] '). "Invalid IPN: $req" . PHP_EOL, 3, LOG_FILE); 
    } 
} 

正如我刚才所说,经核实_donations回报,但_xclick-订阅的CMD值返回无效的数据。我有一个这里返回的数据的例子。

cmd=_notify-validate&txn_type=subscr_signup&subscr_id=I-SFYTVAKSSYGK&last_name=lastname&residence_country=US&mc_currency=USD&item_name=Monthly+Sub&business=mail%40url.com&amount3=10.00&recurring=1&address_street=1+Main+St&payer_status=verified&payer_email=name%40email.com&address_status=confirmed&first_name=firstname&receiver_email=mail%40url.com&address_country_code=US&payer_id=SYPW3V3BVWTJW&address_city=San+Jose&reattempt=1&address_state=CA&subscr_date=07%3A33%3A13+Aug+27%2C+2014+PDT&address_zip=95131&charset=windows-1252&period3=1+M&address_country=United+States&mc_amount3=10.00&address_name=firstname+lastname&auth=AwIHoldf-BK2GZqtPhPo0O2g3go74cV9ZOLRYhHTJdKDM5EP0YHuqHLo23RYPfQs-3YDnvhjVf.J3AtydGfvDfA&form_charset=UTF-8 

我真的不知道该从哪里出去,所以任何和所有的帮助非常感谢!

+0

具有相同的问题。任何人都有解决方案? – 2014-08-31 17:48:53

+0

@MangirdasSkripka我想清楚我的问题是什么。由于我正在一个新的网站上开发,我有htaccess阻止任何,但我的IP能够看到该网站。在做了一天的IPN模拟测试以获取IP地址后,贝宝用来发布数据,我认为我拥有了所有这些数据。事实证明,我错过了沙箱用于订阅的付款,我不知道为什么,它与一次性付款不同。一旦我发现这一点,它就会继续。因此,如果您使用htaccess阻止传入的ips,请仔细检查以及错误日志。 – 2014-09-02 16:41:44

回答

0

经过另一整天的测试,我终于弄清楚是什么导致了我的具体问题。事实证明,Paypal喜欢使用多个IP将信息从沙箱发布到您的服务器。我正在使用htaccess来阻止所有,但我的IP地址查看网站(有一台服务器,但我真的很接近上线,这是除了我打开网站的最后一件事)。抓住我认为是PayPal沙箱IP的所有东西后,我在htaccess中打开了这些。事实证明,与一次性支付方式相比,Paypal使用不同的IP来发布订阅方法中的数据。一旦我发现并添加到htaccess的IP,我的问题就消失了。