web-dev-qa-db-ja.com

LocalhostのPaypalサンドボックステストツールIPNシミュレーター

ローカルマシンでインスタント支払い通知シミュレーターを使用する方法は? IPNハンドラーURLには何が提供されますか?ルーターにアクセスできません。

ありがとう

34
JR Galia

IPNは、Paypalのサーバーがサーバー側POSTを定義したURLに対して開始することに関するものです。
その結果、IPNスクリプトmustは外部からアクセス可能になります(またはngrok.me/localtunnel.meなどのトンネルを使用できます)。

20
Robert

ngrok を使用してlocalhostでテストできます。

Ngrokをローカルで実行し、ngrokが提供するテストURLを貼り付けます( http://1bc7d09d.ngrok.com/ など)

ローカルホストへのトンネルを提供します。

46
atahan

PaypalのIPNシミュレーターは、localhostでは動作しません。ただし、シミュレータをシミュレートできます:-)。これを行うには、Firefoxの場合は poster 、またはgoogle chromeの場合は Advanced Rest Client などのブラウザプラグイン/拡張機能をインストールする必要があります。

アプリを開き、IPN応答をリッスンしているURLを入力します。

http://localhost/ipn

以下をPOSTデータとして入力し、リクエストを送信します。

residence_country=US&invoice=abc1234&address_city=San+Jose&first_name=John&payer_id=TESTBUYERID01&mc_fee=0.44&txn_id=421462822&receiver_email=seller%40paypalsandbox.com&custom=xyz123+CUSTOMHASH&payment_date=12%3A40%3A25+27+Aug+2013+PDT&address_country_code=US&address_Zip=95131&item_name1=something&mc_handling=2.06&mc_handling1=1.67&tax=2.02&address_name=John+Smith&last_name=Smith&receiver_id=seller%40paypalsandbox.com&verify_sign=AFcWxV21C7fd0v3bYYYRCpSSRl31AgAAjEU7A5rthY2aP4j1jOIrjuGx&address_country=United+States&payment_status=Completed&address_status=confirmed&business=seller%40paypalsandbox.com&payer_email=buyer%40paypalsandbox.com&notify_version=2.4&txn_type=cart&test_ipn=1&payer_status=unverified&mc_currency=USD&mc_gross=12.34&mc_shipping=3.02&mc_shipping1=1.02&item_number1=AK-1234&address_state=CA&mc_gross1=9.34&payment_type=instant&address_street=123%2C+any+street

[〜#〜] update [〜#〜]:より簡単な別のオプション https:// localtunnel。 me 。モジュールをインストールして実行するには、次の手順を実行します。公開URLが表示されます。そのパブリックURLへのすべてのリクエストは、ローカルホストに転送されます。

npm install -g localtunnel
lt --port 80
32
Matt

Localhostで作成した以下のスクリプトを実行すると、PaypalのIPN投稿をシミュレートできます(curlをインストールする必要があります)。リスナーがサンドボックスをポイントしている限り、リスナーは検証する必要があります。リスナーをライブPaypalに変更すると、検証に失敗するはずです。

<?php
// SIMULATE Paypal IPN LOCALLY
//
// Sometimes you need to test on your local Host and this can be difficult due
// to IP routing issues.  Use this code on your local machine to simulate the
// same process that the sandbox IPN simulator does when posting to your URL.
//
// Run this code in command line or via the browser.  It will post IPN data just
// like Paypal would.  If the code you've written to process your IPN data
// posts back to the sandbox, it should come back as valid.

// Put the full url to test in $Paypal_url, include file extensions if necessary
$Paypal_url = 'http://localhost/Paypal_ipn/process';   // IPN listener to test

//example posted data from Paypal IPN
$test = 'residence_country=US&invoice=abc1234&address_city=San+Jose&first_name=John&payer_id=TESTBUYERID01&mc_fee=0.44&txn_id=421462822&receiver_email=seller%40paypalsandbox.com&custom=xyz123+CUSTOMHASH&payment_date=12%3A40%3A25+27+Aug+2013+PDT&address_country_code=US&address_Zip=95131&item_name1=something&mc_handling=2.06&mc_handling1=1.67&tax=2.02&address_name=John+Smith&last_name=Smith&receiver_id=seller%40paypalsandbox.com&verify_sign=AFcWxV21C7fd0v3bYYYRCpSSRl31AgAAjEU7A5rthY2aP4j1jOIrjuGx&address_country=United+States&payment_status=Completed&address_status=confirmed&business=seller%40paypalsandbox.com&payer_email=buyer%40paypalsandbox.com&notify_version=2.4&txn_type=cart&test_ipn=1&payer_status=unverified&mc_currency=USD&mc_gross=12.34&mc_shipping=3.02&mc_shipping1=1.02&item_number1=AK-1234&address_state=CA&mc_gross1=9.34&payment_type=instant&address_street=123%2C+any+street';
/*
 * More detailed breakout of the raw data
  _POST EXAMPLE ARRAY FROM Paypal:
  Array
  (
  [residence_country] => US
  [invoice] => abc1234
  [address_city] => San Jose
  [first_name] => John
  [payer_id] => TESTBUYERID01
  [mc_fee] => 0.44
  [txn_id] => 421462822
  [receiver_email] => [email protected]
  [custom] => xyz123 CUSTOMHASH
  [payment_date] => 12:40:25 27 Aug 2013 PDT
  [address_country_code] => US
  [address_Zip] => 95131
  [item_name1] => something
  [mc_handling] => 2.06
  [mc_handling1] => 1.67
  [tax] => 2.02
  [address_name] => John Smith
  [last_name] => Smith
  [receiver_id] => [email protected]
  [verify_sign] => AFcWxV21C7fd0v3bYYYRCpSSRl31AgAAjEU7A5rthY2aP4j1jOIrjuGx
  [address_country] => United States
  [payment_status] => Completed
  [address_status] => confirmed
  [business] => [email protected]
  [payer_email] => [email protected]
  [notify_version] => 2.4
  [txn_type] => cart
  [test_ipn] => 1
  [payer_status] => unverified
  [mc_currency] => USD
  [mc_gross] => 12.34
  [mc_shipping] => 3.02
  [mc_shipping1] => 1.02
  [item_number1] => AK-1234
  [address_state] => CA
  [mc_gross1] => 9.34
  [payment_type] => instant
  [address_street] => 123, any street
  )
 */

//#
// Paypal IPN processor in PHP
// fake Paypal post to test scripts
//#
//----------------------------------------------------------
// Create FAKE post from Paypal.
//----------------------------------------------------------

$req = $test; // use test data

//open connection
$ch = curl_init();

//set the url, number of POST vars, POST data
curl_setopt($ch,CURLOPT_URL, $Paypal_url);
curl_setopt($ch,CURLOPT_POST, substr_count($req,'&')+1);
curl_setopt($ch,CURLOPT_POSTFIELDS, $req);

//execute post
$result = curl_exec($ch);

//close connection
curl_close($ch);
?>
8
user6972
/ngrok http -Host-header=yourwebsite.com 80

正しいホストヘッダーを使用してローカルホストにトンネルします

5
garyconstable

ローカルホストでテストします。 dyn.comやnoip.comなどのサービスを使用するか、静的な場合はサブドメインをローカルアドレスにポイントできます。

4
Brian Keith