无法在 2checkout 响应中获取自定义参数

Can't get custom parameter in 2checkout response

我的表单代码如下。并添加 ramram 作为隐藏输入。我想在此添加我的订单。

<form id="2checkout" action="https://sandbox.2checkout.com/checkout/purchase" method="post">
<input type="hidden" name="sid" value="901353720"/>
<input type="hidden" name="mode" value="2CO"/>
<input type="hidden" name="li_0_name" value="Test Product"/>
<input type="hidden" name="li_0_price" value="0.01"/>
<input type="hidden" name="ramram" value="512" />
<input type="submit" value="Click here if you are not redirected automatically" />
</form>
<script type="text/javascript">document.getElementById('2checkout').submit();</script>

为了获得响应,我使用了以下代码

<?php

$html = '';
foreach ($_POST as $k => $v) {
    $html .= "$k => $v"; echo PHP_EOL;
}

file_put_contents('test.txt', $html); ?>

为此使用特定的 name

例如

<input type='hidden' name='merchant_order_id' value='51200' >

更多参数

参考。 https://www.2checkout.com/documentation/checkout/standard-checkout