3

我正在使用 2co 沙盒来测试这样的销售。

<form method="post" action="https://sandbox.2checkout.com/checkout/purchase">
    <input type="hidden" value="myAccountNumber" name="sid">
    <input type="hidden" value="2CO" name="mode">
    <input type="hidden" value="product" name="li_0_type">
    <input type="hidden" value="Subscription" name="li_0_name">
    <input type="hidden" value="50.00" name="li_0_price">
    <input type="hidden" value="N" name="li_0_tangible">
    <input type="hidden" value="USD" name="currency_code">
    <input type="submit" value="Checkout" name="submit">
</form>

我有这段代码来处理返回代码

$hashSecretWord = 'testsecretword';  //copied from sandbox account
$hashSid = 'myAccountNumber'; 
$hashTotal = '50.00'; 
$hashOrder = $_REQUEST['order_number'];
echo $_REQUEST['key']."<br>";
echo $StringToHash = strtoupper(md5($hashSecretWord . $hashSid . $hashOrder . $hashTotal));

网址

http://www.domain.com/ipn.php?middle_initial=&li_0_name=Subscription&sid=mySameAccountNumber
&key=CBB0C2CA27FDAC5E3316161D829BAF66&state=test&email=test@test.com&li_0_type=product
&order_number=9093725652885&currency_code=USD&lang=en&invoice_id=9093725652894&li_0_price=50.00
&total=50.00&credit_card_processed=Y&zip=0000&li_0_quantity=1&cart_weight=0&fixed=Y
&submit=Checkout //then other buyer information

但它们完全不同,我得到哈希不匹配错误

4

2 回答 2

4

在沙盒中,您应该使用 '1' 而不是 $hashOrder ,如下所示:

$StringToHash = strtoupper(md5($hashSecretWord . $hashSid . 1 . $hashTotal));
于 2015-11-30T06:01:05.740 回答
0

我将TwocheckoutReturn.php课程更改为在发送箱相对于@TooCool 答案上也可以工作。

代替:

$hashOrder = $params['order_number'];

和:

$hashOrder = self::$sandbox ? '1' : $params['order_number'];

编辑类后,您无需随时手动更改参数,只需true在初始化过程中将沙箱设置为,它将自动运行。

Twocheckout::sandbox(true);
于 2016-02-15T12:42:11.370 回答