- PHP 5.6+
- cURL PHP Extension
- JSON PHP Extension
- An Authorize.Net account (see Registration & Configuration section below)
- TLS 1.2 capable versions of libcurl and OpenSSL (or its equivalent)
The Authorize.Net APIs only support connections using the TLS 1.2 security protocol. This SDK communicates with the Authorize.Net API using libcurl
and OpenSSL
(or equivalent crypto library). It's important to make sure you have new enough versions of these 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 these libraries.
To test whether your current installation is capable of communicating to our servers using TLS 1.2, run the following PHP code and examine the output for the TLS version:
<?php
$ch = curl_init('https://apitest.authorize.net/xml/v1/request.api');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_VERBOSE, true);
$data = curl_exec($ch);
curl_close($ch);
If curl is unable to connect to our URL (as given in the previous sample), it's likely that your system is not able to connect using TLS 1.2, or does not have a supported cipher installed. To verify what TLS version your connection does support, run the following PHP code:
<?php
$ch = curl_init('https://www.howsmyssl.com/a/check');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$data = curl_exec($ch);
curl_close($ch);
$json = json_decode($data);
echo "Connection uses " . $json->tls_version ."\n";
We recommend using Composer
. (Note: we never recommend you
override the new secure-http default setting).
Update your composer.json file as per the example below and then run
composer update
.
{
"require": {
"php": ">=5.6",
"authorizenet/authorizenet": "~1.9"
}
}
After installation through Composer, don't forget to require its autoloader in your script or bootstrap file:
require 'vendor/autoload.php';
Alternatively, we provide a custom SPL
autoloader for you to reference from within your PHP file:
require 'path/to/anet_php_sdk/autoload.php';
This autoloader still requires the vendor
directory and all of its dependencies to exist.
However, this is a possible solution for cases where composer can't be run on a given system.
You can run composer locally or on another system to build the directory, then copy the
vendor
directory to the desired system.
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.
...
use net\authorize\api\contract\v1 as AnetAPI;
...
$merchantAuthentication = new AnetAPI\MerchantAuthenticationType();
$merchantAuthentication->setName("YOURLOGIN");
$merchantAuthentication->setTransactionKey("YOURKEY");
...
$request = new AnetAPI\CreateTransactionRequest();
$request->setMerchantAuthentication($merchantAuthentication);
...
You should never include your Login ID and Transaction Key directly in a PHP 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.
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 execute method. For example:
// For PRODUCTION use
$response = $controller->executeWithApiResponse(\net\authorize\api\constants\ANetEnvironment::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.
Integration tests for the AuthorizeNet SDK are in the tests
directory. These tests
are mainly for SDK development. However, you can also browse through them to find
more usage examples for the various APIs.
- Run
composer update --dev
to load thePHPUnit
test library. - Copy the
phpunit.xml.dist
file tophpunit.xml
and enter your merchant credentials in the constant fields. - Run
vendor/bin/phpunit
to run the test suite.
You'll probably want to disable emails on your sandbox account.
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.
The SDK generates a log with masking for sensitive data like credit card, expiration dates. The provided levels for logging are
debug
, info
, warn
, error
. Add use \net\authorize\util\LogFactory;
. Logger can be initialized using $logger = LogFactory::getLog(get_class($this));
The default log file phplog
gets generated in the current folder. The subsequent logs are appended to the same file, unless the execution folder is changed, and a new log file is generated.
- Logging a string message
$logger->debug("Sending 'XML' Request type");
- Logging xml strings
$logger->debug($xmlRequest);
- Logging using formatting
$logger->debugFormat("Integer: %d, Float: %f, Xml-Request: %s\n", array(100, 1.29f, $xmlRequest));
A local copy of AuthorizedNetSensitiveTagsConfig.json gets generated when code invoking the logger first gets executed. The local file can later be edited by developer to re-configure what is masked and what is visible. (Do not edit the JSON in the SDK).
- For each element of the
sensitiveTags
array,tagName
field corresponds to the name of the property in object, or xml-tag that should be hidden entirely ( XXXX shown if no replacement specified ) or masked (e.g. showing the last 4 digits of credit card number).pattern
[Note] andreplacement
[Note] can be left""
, if the default is to be used (as defined in Log.php).pattern
gives the regex to identify, whilereplacement
defines the visible part.disableMask
can be set to true to allow the log to fully display that property in an object, or tag in a xml string.
sensitiveStringRegexes
[Note] has list of credit-card regexes. So if credit-card number is not already masked, it would get entirely masked.- Take care of non-ascii characters (refer manual) while defining the regex, e.g. use
"pattern": "(\\p{N}+)(\\p{N}{4})"
instead of"pattern": "(\\d+)(\\d{4})"
. Also note\\
escape sequence is used.
Note: For any regex, no starting or ending '/' or any other delimiter should be defined. The '/' delimiter and unicode flag is added in the code.
This repository is distributed under a proprietary license. See the provided LICENSE.txt
file.