我正在尝试使用paypal ipn来传递变量,从用户点击我的按钮到我收到ipn通知。我目前正在沙箱上对此进行测试。我很好地收到了 IPN 请求,但是当它进来时,它缺少我在表单上传递的两个变量,自定义和发票。这是我的表单的示例:
<form id="paypal-form" action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick"/>
<input type="hidden" name="hosted_button_id" value="23424234488"/>
<input type="hidden" name="custom" value="basic"/>
<input type="hidden" name="invoice" value="24817238724"/>
</form>
当我获得 IPN 时,请求中没有定义自定义和发票。我怎样才能让这些值通过?