PayPalからIPNを機能させようとしていますが、INVALID
代わりにIPNが返され続け、VERIFIED
何が間違っているのかわかりません。
現在、paypalの開発者サイトのサンプルコードを使用した2つのphpファイルがあります。コードは正常に実行されているようですsandbox
。支払いが送金されているのを確認できるように使用しているので、なぜ取得されているのかわかりませんINVALID
。
私が間違ったことを理解できないので、誰かがコードを見ることができますか?
1. basic_payment.php(支払いデータをpaypalに送信するファイル)
<?php require_once ("paypalplatform.php"); $actionType = "PAY"; $cancelUrl = "http://[my server details go here]/cancel.php"; $returnUrl = "http://[my server details go here]/success.php"; $currencyCode = "GBP"; $receiverEmailArray = array( 'seller_15456764326_biz@mail.com' ); $receiverAmountArray = array( '2' ); $receiverPrimaryArray = array(); $senderEmail = ""; $feesPayer = ""; $ipnNotificationUrl = "http://[my server details go here]/ipn.php"; $memo = ""; $pin = ""; $preapprovalKey = ""; $reverseAllParallelPaymentsOnError = ""; $trackingId = generateTrackingID(); $receiverInvoiceIdArray = array( $trackingId ); $resArray = CallPay ($actionType, $cancelUrl, $returnUrl, $currencyCode, $receiverEmailArray, $receiverAmountArray, $receiverPrimaryArray, $receiverInvoiceIdArray, $feesPayer, $ipnNotificationUrl, $memo, $pin, $preapprovalKey, $reverseAllParallelPaymentsOnError, $senderEmail, $trackingId ); $ack = strtoupper($resArray["responseEnvelope.ack"]); if($ack=="SUCCESS") { if ("" == $preapprovalKey) { $cmd = "cmd=_ap-payment&paykey=" . urldecode($resArray["payKey"]); RedirectToPayPal ( $cmd ); } else { $payKey = urldecode($resArray["payKey"]); $paymentExecStatus = urldecode($resArray["paymentExecStatus"]); } } ?>
2. ipn.php(ペイパルの応答をリッスンするファイル)
<?php $ipn_post_data = $_POST; $url = 'https://www.sandbox.paypal.com/cgi-bin/webscr'; $request = curl_init(); curl_setopt_array($request, array ( CURLOPT_URL => $url, CURLOPT_POST => TRUE, CURLOPT_POSTFIELDS => http_build_query(array('cmd' => '_notify-validate') + $ipn_post_data), CURLOPT_RETURNTRANSFER => TRUE, CURLOPT_HEADER => FALSE, )); $response = curl_exec($request); $status = curl_getinfo($request, CURLINFO_HTTP_CODE); curl_close($request); $to = "oshirowanen@mail.com"; $from = "me@desktop.com"; $subject = "response"; $message = "<pre>".print_r($status,true)." - ".print_r($response,true)."</pre>\n"; $header = 'To: Oshirowanen <oshirowanen@mail.com>' . "\r\n"; $header .= 'From: Me <me@desktop.com>' . "\r\n"; mail($to,$subject,$message,$header); ?>
エラーメッセージ:
Apacheエラーログ-エラーなし
これが、何かをキャプチャしようとするためにipn.phpに電子メールを追加した理由であり、次のように返されます。
<pre>200 - INVALID</pre>
誰かが私が間違っていることを見ることができますか?