0

そのため、私の Web サイトでは、希望するアップグレードの [今すぐ支払う] をクリックし、ボックスにユーザー名を入力して、アップグレードを注文できます。今までは、PayPal にアクセスして支払いを確認し、Minecraft のユーザー名フィールドを見て、手動でアップグレードしていました。これまで行ってきたすべての作業を自動化できるように、IPN の使用を開始したいと考えています。

アップグレード オプションの HTML コードは次のとおりです。

<div class=donationBox>

<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="W2RH7VA3YS3Y4">
<table>
<tr>
<td width=75%><h2>Custom Maps - $5.00</h2></td>
<td><input type="hidden" name="on0" value="Minecraft Username">Minecraft Username<input type="text" name="os0" maxlength="200"></td>
</tr>
<tr>

<td>The ability to upload any map you want to play on! Maybe a survival island map? You bet! Or the Hunger Games!</td>
<td><input type="submit" class="btn btn-primary" value="Buy Now" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!"></td>
</tr>
</table>
</form>
</div>

そして、これを機能させるために必要な情報を電子メールで送信するための PHP コードを次に示します。

  <?php

  // STEP 1: Read POST data

  // reading posted data from 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";
  }


  // STEP 2: Post IPN data back to paypal to validate

  $ch = curl_init('https://www.paypal.com/cgi-bin/webscr');
  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);
  curl_setopt($ch, CURLOPT_HTTPHEADER, array('Connection: Close'));

  // In wamp like environments that do not come bundled with root authority certificates,
  // please download 'cacert.pem' from "http://curl.haxx.se/docs/caextract.html" and set the directory path 
  // of the certificate as shown below.
  // curl_setopt($ch, CURLOPT_CAINFO, dirname(__FILE__) . '/cacert.pem');
  if( !($res = curl_exec($ch)) ) {
      // error_log("Got " . curl_error($ch) . " when processing IPN data");
      curl_close($ch);
      exit;
  }
  curl_close($ch);


  // STEP 3: Inspect IPN validation result and act accordingly

  if (strcmp ($res, "VERIFIED") == 0) {
  // check whether the payment_status is Completed
  // check that txn_id has not been previously processed
  // check that receiver_email is your Primary PayPal email
  // check that payment_amount/payment_currency are correct
  // process payment

  // assign posted variables to local variables
  $item_name = $_POST['item_name'];
  $item_number = $_POST['item_number'];
  $payment_status = $_POST['payment_status'];
  $payment_amount = $_POST['mc_gross'];
  $payment_currency = $_POST['mc_currency'];
  $txn_id = $_POST['txn_id'];
  $receiver_email = $_POST['receiver_email'];
  $payer_email = $_POST['payer_email'];
  $custom = $_POST['on0'];
  $message = "An order has been IPNified! " . $item_name . " " . $item_number . " " . $payment_amount . " " . $txn_id . " " . $custom;
  mail('myemail@gmail.com', 'PayPal IPN', $message);
  } else if (strcmp ($res, "INVALID") == 0) {
      mail('myemail@gmail.com', 'PayPal IPN', 'Errors');
  }
  ?>

私が抱えている問題はここにあります:

$custom = $_POST['on0'];

私は上記のようにそれを試しました:

$custom = $_POST['custom'];

1 つ目は Minecraft のユーザー名フィールドの名前であり、2 つ目はそれが本来あるべきものだと読んだので試しましたが、いずれにしても何も返されませんでした。どんな助けでも素晴らしいでしょう!ありがとう!

4

2 に答える 2

2

の結果をダンプして、$_POST探している値に適合するキーを確認します。var_dumpまたはprint_rのいずれかを使用します

// Displays more detail such as value types
var_dump($_POST);

// Only displays key => value relationships of an array
print_r($_POST);

編集

ipn を使用してこの出力を表示することはできないことに気付きました。この場合、常にアレイserialize全体を電子メールで送信できます。$_POST

$post_data_string = serialize($_POST);
mail('myemail@gmail.com', 'PayPal IPN', $post_data_string);
于 2012-11-13T04:04:01.650 に答える
0

まず、ホストされたボタンを使用しています。そのため、設定するカスタム オプションは、ボタン作成ウィザードまたは PayPal アカウントの編集エリア内で行う必要があります。

カスタム データを送信するための実際のパラメータ名は実際には「カスタム」であるため、その特定のパラメータの値を取得するには、IPN で使用する必要があります。

前に述べたこと (フォームのフィールド名をカスタムに変更する) は、ホストされたボタンを使用している場合を除いて機能するため、PayPal アカウントのボタン マネージャーで調整する必要があります。

于 2012-11-13T05:56:33.757 に答える