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>

そして、retunコードを処理するためのこのコードがあります

$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));

URL

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

0

TwocheckoutReturn.php@TooCoolの回答に関連するsendboxでも機能するようにクラスを変更します。

交換:

$hashOrder = $params['order_number'];

と:

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

クラスを編集した後は、手動でパラメーターを変更する必要はありませんtrue。初期化プロセスでサンドボックスを設定するだけで、自動的に機能します。

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