2016-04-02 26 views
1

私のウェブサイトでPayPal IPNを有効にしようとしています。私は現在、テスト環境に関するいくつかの問題、つまりPayPalサンドボックスに直面しています。PayPal即時支払い通知(IPN)サンドボックス

私はPHPと統合しようとしていますので、paypal_ipn.phpファイルのコードをhttps://github.com/paypal/ipn-code-samplesから使用しています。

私はpaypal_ipn.phpするPOSTアクションを送っていると、テストHTMLページを持っている:

<form target="_new" method="post" action="http://example.com/paypal_integration/paypal_ipn.php"> 

<input type="hidden" name="business" value="[email protected]_email.com"> 
<input type="hidden" name="item_name" value="product name"> 
<input type="hidden" name="amount" value="1" > 
<input type="hidden" name="item_number" value="1"> 
<input type="hidden" name="custom" value="[email protected]"> 
<input type="hidden" name="currency_code" value="USD"> 
<input type="hidden" name="quantity" value="1"> 
<input type="hidden" name="no_shipping" value="1"> 
<input type="hidden" name="return" value="http://example.com/paypal_integration/return.php"> 
<input type="hidden" name="cancel_return" value="http://example.com/paypal_integration/cancel_return.php"> 
<input type="hidden" name="cbt" value="description"> 
<input type="hidden" name="rm" value="2"> 
<input type="hidden" name="notify_url" value="http://example.com/paypal_integration/paypal_ipn.php"> 
    <input type="submit" value="submit!" /> 
</form> 

結果が「無効」です。どのように私はこの問題を、サンドボックス環境で、それ以降は実環境で行っていますか?私。サンドボックスで「確認済み」のアクションを取得するにはどうすればよいですか?

答えて

1

私はこれを解決した:PayPalのアカウントで

関連する問題