Starting Release 1.8.6 November 2015 the Authorize.Net API has been reorganized to be more merchant focused. AIM, ARB, CIM, Reporting and SIM have all been deprecated in favor of sdk-ruby/lib/authorize_net/api.
- Ruby 2.2.2 or higher
- RubyGem 1.3.7 or higher (to build the gem)
- RDoc 1.0 or higher (to build documentation)
- Rake 0.8.7 or higher (to use the rake tasks)
- Bundle 1.6 or higher
- RSpec 2.1 or higher (to run rspec tests)
- An Authorize.Net account (see Registration & Configuration section below)
Since August 2018, the Authorize.Net API has been reorganized to be more merchant focused. AuthorizeNetAIM, AuthorizeNetARB, AuthorizeNetCIM, Reporting and AuthorizeNetSIM classes have all been deprecated in favor of AuthorizeNet::API. To see the full list of mapping of new features corresponding to the deprecated features, you can see MIGRATING.md.
- If you need information or clarification about any Authorize.Net features, please create an issue for it. Also you can search in the Authorize.Net developer community.
- Before creating pull requests, please read the contributors guide.
The Authorize.Net APIs only support connections using the TLS 1.2 security protocol. It's important to make sure you have new enough versions of all required components to support TLS 1.2. Additionally, it's very important to keep these components up to date going forward to mitigate the risk of any security flaws that may be discovered in your system or any libraries it uses.
> sudo gem install authorizenet
> bundle install
> rake gem
> sudo gem install ./authorizenet-1.9.3.gem
Use of this SDK and the Authorize.Net APIs requires having an account on our system. You can find these details in the Settings section. If you don't currently have a production Authorize.Net account and need a sandbox account for testing, you can easily sign up for one here.
To authenticate with the Authorize.Net API you will need to use your account's API Login ID and Transaction Key. If you don't have these values, you can obtain them from our Merchant Interface site. Access the Merchant Interface for production accounts at (https://account.authorize.net/) or sandbox accounts at (https://sandbox.authorize.net).
Once you have your keys simply load them into the appropriate variables in your code, as per the below sample code dealing with the authentication part of the API request.
transaction = Transaction.new('YOUR_API_LOGIN_ID', 'YOUR_TRANSACTION_KEY', :gateway => :sandbox)
You should never include your Login ID and Transaction Key directly in a file that's in a publically accessible portion of your website. A better practice would be to define these in a constants file, and then reference those constants in the appropriate place in your code.
Access Tokens can be setup using the transaction instantiation without the constructor. For example, in the method above:
transaction = Transaction.new
transaction.access_token = 'testTokenValue'
transaction.options_OAuth = {:gateway => :sandbox, :verify_ssl => true}
Authorize.Net maintains a complete sandbox environment for testing and development purposes. This sandbox environment is an exact duplicate of our production environment with the transaction authorization and settlement process simulated. By default, this SDK is configured to communicate with the sandbox environment. To switch to the production environment, replace the environment constant in the transaction instantiation. For example:
# For PRODUCTION use
transaction = Transaction.new('YOUR_API_LOGIN_ID', 'YOUR_TRANSACTION_KEY', :gateway => :production)
API credentials are different for each environment, so be sure to switch to the appropriate credentials when switching environments.
To get started using this SDK, it's highly recommended to download our sample code repository:
In that respository, we have comprehensive sample code for all common uses of our API:
Additionally, you can find details and examples of how our API is structured in our API Reference Guide:
The API Reference Guide provides examples of what information is needed for a particular request and how that information would be formatted. Using those examples, you can easily determine what methods would be necessary to include that information in a request using this SDK.
Use this method to authorize and capture a payment using a tokenized credit card number issued by Chase Pay. Chase Pay transactions are only available to merchants using the Paymentech processor.
The following information is required in the request:
- The payment token,
- The expiration date,
- The cryptogram received from the token provider,
- The tokenRequestorName,
- The tokenRequestorId, and
- The tokenRequestorEci.
When using the SDK to submit Chase Pay transactions, consider the following points:
tokenRequesterName
must be populated with”CHASE_PAY”
tokenRequestorId
must be populated with theToken Requestor ID
provided by Chase Pay services for each transaction during consumer checkouttokenRequesterEci
must be populated with theECI Indicator
provided by Chase Pay services for each transaction during consumer checkout
To run the integration tests (hitting the sandbox):
rake spec
To run the unit tests:
rake spec:ci
To get spec/reporting_spec.rb to pass, go to https://sandbox.authorize.net/ under Account tab->Transaction Details API and enable it.
To run rspec tests, create a spec/credentials.yml with the following keys and the values obtained as described below.
#obtain an API login_id and transaction_id according to instructions at https://developer.authorize.net/faqs/#gettranskey
api_login_id: {login_id_value}
api_transaction_key: {transaction_key_value}
#obtained md5 hash value by first setting the hash value in https://sandbox.authorize.net/ under the Account tab->MD5 Hash
md5_value: {md5_value}
For additional help in testing your own code, Authorize.Net maintains a comprehensive testing guide that includes test credit card numbers to use and special triggers to generate certain responses from the sandbox environment.
A new sensitive data logger has been introduced with the Authorize.Net Ruby Sdk. To use it in your code, create a file called LogConfig.yml
and place it in the base folder of your application. The logger configuration should contain the following lines:
loglevel: info
filepath: <file_path>
maskSensitiveData: true
The logger code uses the default Ruby Logger
library. So there is no need to install any external libraries for the purpose of logging. All the above three fields in the LogConfig.yml file are mandatory. The logging levels available are debug, info, warn
and error
.
The value for maskSensitiveData
can either be true or false. Setting the maskSensitiveData
flag to true masks the sensitive data in the request XML body while logging to the log file. You can turn off logging by removing the configuration file from your application folder.
The list of sensitive fields which will be masked during logging are
- Card Number,
- Card Code,
- Expiration Date,
- Name on Account,
- Transaction Key and
- Account Number.
There is also a list of regular expressions which the sensitive logger uses to mask credit card numbers while logging.
Further information on the sensitive data logging and regular expressions can be found at this location.
This repository is distributed under a proprietary license. See the provided LICENSE.txt
file.