|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
Be the architects of evolution and help create the mobile internet future. It’s your move---enter to win here! |
|
#1
|
|||
|
|||
|
Advance Integration Method Code
Hi,
Can I get cfml code for authorize.net payment gate: Advance Integration Method |
|
#2
|
|||
|
|||
|
AIM-Code
Create the Transaction Key from Authorize.Net site
How to Obtain Transaction Key: a. Log into the Merchant Interface of Authorize.net site b. Select Settings From Main menu c. Click on "Obtain Transaction Key" in the security section d. Type in the answer to the Secret question configured on setup e. Click Submit Using this key and user id we can establish contact with https://secure.authorize.net/gateway/transact.dll <cfhttp url="https://secure.authorize.net/gateway/transact.dll" method="post"> <cfhttpparam type="Formfield" value="#Attributes.X_LOGIN#" name="X_LOGIN"> <cfhttpparam type="Formfield" value="#Attributes.X_VERSION#" name="X_VERSION"> <cfhttpparam type="Formfield" value="#Attributes.X_PASSWORD#" name="X_PASSWORD"> <cfhttpparam type="Formfield" value="#Attributes.X_METHOD#" name="X_METHOD"> <cfhttpparam type="Formfield" value="#Attributes.X_CARD_NUM#" name="X_CARD_NUM"> <cfhttpparam type="Formfield" value="#Attributes.X_EXP_DATE#" name="X_EXP_DATE"> <cfhttpparam type="Formfield" value="#Attributes.X_AMOUNT#" name="X_AMOUNT"> <cfhttpparam type="Formfield" value="#Attributes.X_INVOICE_NUM#" name="X_INVOICE_NUM"> <cfhttpparam type="Formfield" value="#Attributes.X_TYPE#" name="X_TYPE"> <cfhttpparam type="Formfield" value="#Attributes.X_LAST_NAME#" name="X_LAST_NAME"> <cfhttpparam type="Formfield" value="#Attributes.X_FIRST_NAME#" name="X_FIRST_NAME"> <cfhttpparam type="Formfield" value="#Attributes.X_ADDRESS#" name="X_ADDRESS"> <cfhttpparam type="Formfield" value="#Attributes.X_CITY#" name="X_CITY"> <cfhttpparam type="Formfield" value="#Attributes.X_STATE#" name="X_STATE"> <cfhttpparam type="Formfield" value="#Attributes.X_ZIP#" name="X_ZIP"> <cfhttpparam type="Formfield" value="#Attributes.X_description#" name="X_description"> <cfhttpparam type="Formfield" value="#Attributes.X_cust_id#" name="X_cust_id"> <cfhttpparam type="Formfield" value="TRUE" name="X_Delim_Data"> </cfhttp> <!-------To capture return values-----> <cfset ReturnedValues = CFHTTP.FileContent> |
![]() |
| Viewing: Dev Shed Forums > Programming Languages - More > ColdFusion Development > Advance Integration Method Code |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|