2015-06-01 120 views
5

我使用了這個問題,並嘗試了所有建議,但沒有任何結果。PayPal沙盒IPN驗證總是返回INVALID

我試過這個代碼:https://developer.paypal.com/docs/classic/ipn/ht_ipn/但它不工作。只需複製粘貼並刪除舊的magick_quotes路線。

我試過這段代碼:http://samples.geekality.net/view-source.php?file=ipn/ipn_handler.class.php它也不起作用。

在我試着做以下所有情況:

$req = 'cmd=_notify-validate&' . file_get_contents('php://input'); 

爲了確保我送到IPN 究竟它送給我的。另外我使用調試代理(Fiddler)並保存了發送給我的IPN以及我發送給IPN的內容。除了我的請求以cmd=_notify-validate&字符串爲前綴之外,請求主體是字節到字節相同的。

是的,我檢查了我使用適當的沙箱網址。這裏是整個申請機構:

什麼IPN發送給我(我剛剛更換的個人資料XXX)

POST http://localhost.loc/en/payment/success/1 HTTP/1.1 
Host: localhost.loc 
Connection: keep-alive 
Content-Length: 921 
Cache-Control: max-age=0 
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8 
Origin: null 
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.81 Safari/537.36 
Content-Type: application/x-www-form-urlencoded 
Accept-Encoding: gzip, deflate 
Accept-Language: ru-RU,ru;q=0.8,en-US;q=0.6,en;q=0.4 

mc_gross=1.00&protection_eligibility=Ineligible&payer_id=5XNKM66NSDKC4&tax=0.00&payment_date=05%3A34%3A11+Jun+01%2C+2015+PDT&payment_status=Completed&charset=utf-8&first_name=XXX&mc_fee=0.33&notify_version=3.8&custom=topup%3A262262%3A1%3A1433162020&payer_status=verified&business=XXX&quantity=1&payer_email=XXX&verify_sign=AG58dBsn5g2z8O8NEjotbuJGP14PAIpZ4k26VL8IyhaDPkcDRj002Keq&memo=hmgvjgjhgfjhfggjhfjtfgjh&txn_id=4CN141026K278934Y&payment_type=instant&last_name=XXX&receiver_email=XXX&payment_fee=0.33&receiver_id=DCMXPXGX4QX6J&txn_type=web_accept&item_name=Account+top+up&mc_currency=USD&item_number=Account+262262+top+up&residence_country=US&test_ipn=1&handling_amount=0.00&transaction_subject=topup%3A262262%3A1%3A1433162020&payment_gross=1.00&shipping=0.00&auth=ANSTBwT3znll-gJQZO2cLoV5QJFW9v8W.FqyWxffdtI0L-9mfsoe2xRL44M86Sn2XtYGtcqG4Fjjel1kdYZyxpQ 

我送到IPN什麼:

POST https://www.sandbox.paypal.com/cgi-bin/webscr HTTP/1.1 
Host: www.sandbox.paypal.com 
Accept: */* 
Content-Length: 942 
Content-Type: application/x-www-form-urlencoded 

cmd=_notify-validate&mc_gross=1.00&protection_eligibility=Ineligible&payer_id=5XNKM66NSDKC4&tax=0.00&payment_date=05%3A34%3A11+Jun+01%2C+2015+PDT&payment_status=Completed&charset=utf-8&first_name=XXX&mc_fee=0.33&notify_version=3.8&custom=topup%3A262262%3A1%3A1433162020&payer_status=verified&business=XXX&quantity=1&payer_email=XXX&verify_sign=AG58dBsn5g2z8O8NEjotbuJGP14PAIpZ4k26VL8IyhaDPkcDRj002Keq&memo=hmgvjgjhgfjhfggjhfjtfgjh&txn_id=4CN141026K278934Y&payment_type=instant&last_name=XXX&receiver_email=XXX&payment_fee=0.33&receiver_id=DCMXPXGX4QX6J&txn_type=web_accept&item_name=Account+top+up&mc_currency=USD&item_number=Account+262262+top+up&residence_country=US&test_ipn=1&handling_amount=0.00&transaction_subject=topup%3A262262%3A1%3A1433162020&payment_gross=1.00&shipping=0.00&auth=ANSTBwT3znll-gJQZO2cLoV5QJFW9v8W.FqyWxffdtI0L-9mfsoe2xRL44M86Sn2XtYGtcqG4Fjjel1kdYZyxpQ 

誰能幫助我什麼我做錯了? 謝謝。

+0

您應該將您的編輯遷移到您自己的問題上的答案:-) – Marty

回答

3

AARRRRGH !!!!!!!!我只對PayPal骯髒的話!!!!!!!問題出現在...(drumroll ... tadam!)charset字段中!不,它的價值必須與IPN發給你的價值相同,但是......在大寫中! IPN以小寫發送它!所以你必須修改IPN數據來驗證它是否成功,無論手冊是否告訴我們「按原樣」返回數據。貝寶錯誤?

所以我最後的工作代碼爲:(使用HTTP_Request2)

protected function verifyPostData() { 
    $this->request->setBody('cmd=_notify-validate&' . str_replace('=utf-8', '=UTF-8', file_get_contents('php://input'))); 
    $response = $this->request->send(); 
    if ($response->getStatus() != 200) { 
     throw new \RuntimeException("Transaction data verification request failed with code {$response->getStatus()}"); 
    } 
    $content = trim($response->getBody()); 
    return ($content == 'VERIFIED'); 
} 

我怎麼做的:我送了本次交易並獲得交易數據的PDT請求。然後我進行了PDT和IPN數據的現場比較。 PDT沒有一些IPN字段,如auth,verify_signtest_ipn。但所有其他領域似乎必須相同。唯一的區別在於charset字段的字符大小寫。然後我嘗試驗證修改的數據,並意外地成功了!

0

這是最近的PayPal的錯誤,當客戶在完成付款,點擊「點擊這裏返回......」,而不是等待幾秒鐘,傳遞給PDT腳本網站上的參數以小寫字母發送。

這也弄亂的東西等的情況下,敏感或編碼釐米/自定義參數。

顯然PayPal知道它。