|
Ben,
I just
implemented Authorize.net for a client this afternoon. It worked flawlessly with
basically 2 lines of code in a method:
<@assign local$postArgList <@array value="x_Version,3.0;x_Login,myLoginID;x_Password,myPassword;x_ADC_URL,False;x_ADC_Delim_Data,True;x_Amount,@@method$amount;x_Card_Num,@@method$cardNumber;x_Exp_Date,@@method$cardExp;">> <@assign method$returnValue <@url location="https://secure.authorize.net/gateway/transact.dll" postargArray=postArgList>>
Of course there's a lot more code for getting the values, calling the method and processing the results that's specific to our application, but the 2 lines above build a postArg array, passes it to Authorize.net over https and gets the response. Dave
|
