9

我正在开发一个 PHP 项目,正在寻找一个好的 authorize.net 网关。我想要一些经过测试的成熟代码。目标是避免根据 authorize.net api 文档自己编写和测试整个事情。

有谁知道这方面有什么好的 PHP 库?我用谷歌搜索无济于事。

4

9 回答 9

8

Authorize.net 为 PHP 和其他语言提供了自己的SDK。可能没有必要去别处寻找。

于 2011-05-03T06:20:19.503 回答
5

你很幸运。这是我使用的(用于 SIM 网关):

include("../../simdata.php");
...
<!--form action="https://test.authorize.net/gateway/transact.dll" method="POST"-->
<FORM action="https://secure.authorize.net/gateway/transact.dll" method="POST">
<?
$x_description = "website.com";
$currency = "";
$tstamp = time();
// Seed random number for security and better randomness.
srand(time());
$sequence = rand(1, 1000);
$data = "$x_loginid^$sequence^$tstamp^$total^$currency";
#echo "data = $data\n";
#echo $x_tran_key;
$fingerprint = bin2hex(mhash(MHASH_MD5, $data, $x_tran_key));
# php 5 only $fingerprint = hash_hmac("md5", $data, $x_tran_key);
echo ("<input type='hidden' name='x_fp_sequence' value='" . $sequence . "'>\n" );
echo ("<input type='hidden' name='x_fp_timestamp' value='" . $tstamp . "'>\n" );
echo ("<input type='hidden' name='x_fp_hash' value='" . $fingerprint . "'>\n" );
echo ("<input type=\"hidden\" name=\"x_description\" value=\"" . $x_description . "\">\n" );
echo ("<input type=\"hidden\" name=\"x_login\" value=\"$x_loginid\">\n");
echo ("<input type=\"hidden\" name=\"x_amount\" value=\"$total\">\n");

?>
<input type="hidden" name="x_first_name" value="<?=firstName($_SESSION['user']['name'])?>">
<input type="hidden" name="x_last_name" value="<?=lastName($_SESSION['user']['name'])?>">
<input type="hidden" name="x_company" value="<?=$_SESSION['user']['company']?>">
<input type="hidden" name="x_address" value="<?=$_SESSION['user']['address']?>">
<input type="hidden" name="x_city" value="<?=$_SESSION['user']['city']?>">
<input type="hidden" name="x_state" value="<?=$_SESSION['user']['state']?>">
<input type="hidden" name="x_zip" value="<?=$_SESSION['user']['zip']?>">
<input type="hidden" name="x_phone" value="<?=$_SESSION['user']['phone']?>">
<input type="hidden" name="x_email" value="<?=$_SESSION['user']['email']?>">
<input type="hidden" name="x_cust_id" value="<?=$_SESSION['user']['username']?>">
<INPUT TYPE="HIDDEN" name="x_logo_url" VALUE= "https://secure.authorize.net/mgraphics/logo_99999.gif">
<INPUT type="hidden" name="x_show_form" value="PAYMENT_FORM">
<!--INPUT type="hidden" name="x_test_request" value="TRUE"-->

<!--input type="hidden" name="x_receipt_link_method" value="POST">
<input type="hidden" name="x_receipt_link_text" value="Click for listings">
<input type="hidden" name="x_receipt_link_url" value="http://website.com/confirmation.php"-->

<input type="hidden" name="x_relay_response" value="TRUE">
<input type="hidden" name="x_relay_url" value="http://website.com/confirmation.php">
<input type="hidden" name="<?=session_name()?>" value="<?=session_id()?>">

<input type="hidden" name="" value="">
<input type="hidden" name="" value="">
<input type="hidden" name="" value="">
<? if ($total==0) { ?>
    <a href="account.php">Your Account</a>
<? } else { ?>
    <INPUT type="submit" value="Accept Order">
<? } ?>
</form> 

这就是我用于确认.php

include("../../simdata.php");
#print_r($_POST);

// verify transaction comes from authorize.net and save user details
$responseCode = $_POST['x_response_code'];
if ( $responseCode == 1) { // approved
    $md5 = $_POST['x_MD5_Hash'];
    $transId = $_POST['x_trans_id'];
    $amount = $_POST['x_amount'];
    $myMD5 = strtoupper(md5("$x_tran_key$x_loginid$transId$amount"));
    #echo $myMD5;
    #print_r ($_POST);
    #print_r ($_SESSION['user']);

    if ($myMD5 == $md5) { // authenticated response from authorize.net
       ...
    } else {
        $error = "Unauthenticated response.";
    }
} else if (isset($_POST['x_response_code'])) { // error
    $error = $_POST['x_response_reason_text'].", #".$_POST['x_response_code'].'.'.$_POST['x_response_subcode'].
        '.'.$_POST['x_response_reason_code'];
}
于 2009-08-03T09:48:05.133 回答
5

form 方法是传输此信息的不安全方式。更好的选择是使用他们的 API AIM 方法。

可以在这里找到一个很棒的教程:http: //www.johnconde.net/blog/tutorial-integrating-the-authorizenet-aim-api-with-php

于 2012-10-19T14:12:55.847 回答
2

Magento 支持 Authorize.Net。提取出您需要的代码,因为 Magento 是经过良好测试且质量好的代码。

于 2009-07-30T21:43:20.940 回答
2

我认为 simdata.php 只包含交易数据……比如金额、人的名字等。

于 2010-08-04T15:50:39.690 回答
2

James Gifford 为 codeigniter 创建了一些 Authorize.net 代码。在这里下载...

http://jamesgifford.com/programming/codeigniter-authorize-net-library/

我正在使用直接从 Authorize.nets 开发站点获得的 php sdk...

http://developer.authorize.net/downloads/

于 2010-10-18T17:56:40.160 回答
1

这是一个在 CodeIgniter 中使用的不错的库,但它可以独立使用:

http://code.google.com/p/authorizenetlib/downloads/detail?name=Authorize_net-1.0.php

信用:詹姆斯 gifford 的代码。

于 2009-09-02T15:25:35.827 回答
1

我使用了 Kohana 2.3.x 中包含的 Payment 模块和内置的 Authorize.Net 驱动程序。 http://docs.kohanaphp.com/addons/payment

于 2009-09-18T00:28:55.163 回答
0

http://www.micahcarrick.com/04-19-2005/php-authorizenet-aim-interfacing-class.html

那是我使用的类。使用起来相当简单。不过,您仍然需要深入研究 API,以确定您想要发送哪些变量以及不发送哪些变量。

于 2009-07-30T21:42:21.270 回答