0

First Data を支払いゲートウェイとして Web サイトに統合する必要があります。ステージング インターフェイスにテスト アカウントを作成しました: http://staging.linkpointcentral.com/

フォームを送信すると、常にエラー 1002 になります。コードは次のとおりです。

<form method="post" action="https://www.staging.linkpointcentral.com/lpc/servlet/lppay"> <input type="hidden" name="txntype" value="sale"> <input type="hidden" name="timezone" value="CET"/> <input type="hidden" name="txndatetime" value="<?php echo getDateTime() ?>"/> <input type="hidden" name="hash" value="<?php echo createHash( "13.00","978" ) ?>"/> <input type="hidden" name="storename" value="1909897411"/> <input type="hidden" name="mode" value="fullpay"/> <input type="text" name="chargetotal" value="13.00"/> <input type="hidden" name="currency" value="978"/> <input type="submit" value="Submit"> </form> function createHash($chargetotal, $currency) { $storeId = "11111111"; $sharedSecret = "sharedsecret"; $stringToHash = $storeId . getDateTime() . $chargetotal .$currency . $sharedSecret; $ascii = bin2hex($stringToHash); return sha1($ascii); }

助けてください。前もって感謝します。

4

1 に答える 1