This repository contains working code samples which demonstrate Java integration with the CyberSource REST APIs through the CyberSource Java SDK.
The samples are organized into categories and common usage examples.
The samples are all completely independent and self-contained. You can analyze them to get an understanding of how a particular method works, or you can use the snippets as a starting point for your own project.
git clone https://github.com/CyberSource/cybersource-rest-samples-java
-
Open the project/folder (rather than import or new).
-
Build the project:
- From the Build menu, select Rebuild Project.
-
Run any sample:
- For example, select
SimpleAuthorizationInternet
class from the class Explorer - Right-click and select Run
SimpleAuthorizationInternet.Main()
- For example, select
-
Import the project:
- From File menu, select Import.
- Expand Maven menu.
- And click Existing Maven Projects
- Click next and browse the location where you have the Maven project source code.
- Click next, Eclipse will recognize the Maven project and it will show you a list of all possible Maven projects located there.
- Just select the project and click next.
- Eclipse will show you a Maven Build message. Just click finish.
- The Maven project is successfully imported into Eclipse IDE.
-
Run the project:
- Right-click the project folder.
- Select Run as Maven Build.
- In the Goals field, enter "clean install"
- Select the JRE tab and make sure it is pointing at a JRE associated with a JDK.
- Click Run.
To set your API credentials for an API request, configure the following information in src/main/java/data/Configuration.java
file:
- Http Signature
authenticationType = http_Signature
merchantID = your_merchant_id
merchantKeyId = your_key_serial_number
merchantsecretKey = your_key_shared_secret
useMetaKey = false
enableClientCert = false
- Jwt
authenticationType = jwt
merchantID = your_merchant_id
keyAlias = your_merchant_id
keyPass = your_merchant_id
keyFileName = your_merchant_id
keysDirectory = resources
useMetaKey = false
enableClientCert = false
- MetaKey Http
authenticationType = http_Signature
merchantID = your_child_merchant_id
merchantKeyId = your_metakey_serial_number
merchantsecretKey = your_metakey_shared_secret
portfolioId = your_portfolio_id
useMetaKey = true
enableClientCert = false
- MetaKey JWT
authenticationType = jwt
merchantID = your_child_merchant_id
keyAlias = your_child_merchant_id
keyPass = your_portfolio_id
keyFileName = your_portfolio_id
portfolioId = your_portfolio_id
keysDirectory = resources
useMetaKey = true
enableClientCert = false
-
OAuth
CyberSource OAuth uses mutual authentication. A Client Certificate is required to authenticate against the OAuth API.
Refer to Supporting Mutual Authentication to get information on how to generate Client certificate.
If the certificate (Public Key) and Private Key are in 2 different files, merge them into a single .p12 file using
openssl
.openssl pkcs12 -export -out certificate.p12 -inkey privateKey.key -in certificate.crt
Set the run environment to OAuth enabled URLs. OAuth only works in these run environments.
// For TESTING use runEnvironment = api-matest.cybersource.com // For PRODUCTION use // runEnvironment = api-ma.cybersource.com
To generate tokens, an Auth Code is required. The Auth Code can be generated by following the instructions given in Integrating OAuth.
This generated Auth Code can then be used to create the Access Token and Refresh Token.
In
src/main/java/data/Configuration.java
file, set the following properties.Note that
authenticationType
is set toMutualAuth
only to generate the Access Token and the Refresh Token.authenticationType = MutualAuth enableClientCert = true clientCertDirectory = resources clientCertFile = your_client_cert in .p12 format clientCertPassword = password_for_client_cert clientId = your_client_id clientSecret = your_client_secret
Once the tokens are obtained, the
authenticationType
can then be set toOAuth
to use the generated Access Token to send requests to other APIs.authenticationType = OAuth enableClientCert = true clientCertDirectory = resources clientCertFile = your_client_cert - .p12 format clientCertPassword = password_for_client_cert clientId = your_client_id clientSecret = your_client_secret accessToken = generated_access_token refreshToken = generated_refresh_token
The Access Token is valid for 15 mins, whereas the Refresh Token is valid for 1 year.
Once the Access Token expires, use the Refresh Token to generate another Access Token.
Refer to StandAloneOAuth.java to understand how to consume OAuth.
For further information, refer to the documentation at Cybersource OAuth 2.0.
The run environments that were supported in CyberSource Java SDK have been deprecated. Moving forward, the SDKs will only support the direct hostname as the run environment.
For the old run environments previously used, they should be replaced by the following hostnames:
Old Run Environment | New Hostname Value |
---|---|
cybersource.environment.sandbox |
apitest.cybersource.com |
cybersource.environment.production |
api.cybersource.com |
cybersource.environment.mutualauth.sandbox |
api-matest.cybersource.com |
cybersource.environment.mutualauth.production |
api-ma.cybersource.com |
cybersource.in.environment.sandbox |
apitest.cybersource.com |
cybersource.in.environment.production |
api.in.cybersource.com |
For example, replace the following code in the Configuration file:
// For TESTING use
runEnvironment = CyberSource.Environment.SANDBOX
// For PRODUCTION use
// runEnvironment = CyberSource.Environment.PRODUCTION
with the following code:
// For TESTING use
runEnvironment = apitest.cybersource.com
// For PRODUCTION use
// runEnvironment = api.cybersource.com
CyberSource 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, set the appropriate environment constant in resources/cybersource.properties file. For example:
// For TESTING use
runEnvironment = apitest.cybersource.com
// For PRODUCTION use
// runEnvironment = api.cybersource.com
To use OAuth, switch to OAuth enabled URLs
// For TESTING use
runEnvironment = api-matest.cybersource.com
// For PRODUCTION use
// runEnvironment = api-ma.cybersource.com
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.