2017-08-23 11 views
0

私のpaypal支払いは正常に完了しましたが、支払い後に、トランザクションID、通貨、価格、アイテム、領収書番号などの取引詳細は表示されません... 15日前に正しく動作します。しかし今は働いていません。Paypalの支払い後、私は取引の詳細を取得しません。サンドボックスアカウント

<form target="paypal" action="https://www.sandbox.paypal.com/cgi- 
    bin/webscr" method="post"> 

     <!-- Identify your business so that you can collect the payments. --> 
     <input type="hidden" name="business" value="[email protected]"> 

     <!-- Specify a PayPal Shopping Cart Add to Cart button. --> 
     <input type="hidden" name="cmd" value="_cart"> 
     <input type="hidden" name="add" value="1"> 

     <!-- Specify details about the item that buyers will purchase. --> 
     <input type="hidden" name="item_name" value="Birthday - Cake and 
     Candle"> 
     <input type="hidden" name="amount" value="3.95"> 
     <input type="hidden" name="currency_code" value="USD"> 
     <input type="hidden" name="cancel_return" 
     value="http://localhost/PayPalDemo/PayPalDemoCancel.php"> 
     <input type="hidden" name="return" 
     value="http://localhost/PayPalDemo/PayPalDemo/Succes.php"> 
     <!-- Display the payment button. --> 
     <input type="image" name="submit" 
src="https://www.paypalobjects.com/webstatic/en_US/i/btn/png/btn_addtocart_120x26.png" 
     alt="Add to Cart"> 
     <img alt="" width="1" height="1" 
     src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif"> 
    </form> 
+0

[documentation](https://developer.paypal.com/docs/classic/products/instant-payment-notification/)も読んでいますか? –

答えて

0

あなたはcancel_returnよう notify_urlパラメータを渡す必要があります。

<input type="hidden" name="notify_url" value="http://localhost/PayPalDemo/PayPalDemoPayment.php" /> 

また、このURLはIPNセクションのサンドボックスアカウントで設定する必要があります。これを参照してくださいhttps://developer.paypal.com/docs/classic/ipn/integration-guide/IPNSimulator/

関連する問題