This repository contains working code samples which demonstrate C#/.NET integration with the CyberSource REST APIs through the CyberSource .NET SDK.
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.
- .NET Framework 4.6.1
- CyberSource Account
- CyberSource API Keys
The samples are organized into categories and common usage examples.
-
Clone this repository.
git clone https://github.com/CyberSource/cybersource-rest-samples-csharp.git
-
Open the solution
cybersource-rest-samples-csharp.sln
in Visual Studio and perform a clean build. -
Run the console app and select a sample to execute.
The console app can be executed from the
Debug
menu in Visual Studio.Alternatively, the console app can also be executed from
command prompt
, run the following command.bin\Debug\net461\SampleCode.exe
To set your API credentials for an API request, configure the following information in Source\Configuration.cs
file:
-
Http
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 keyPassword = your_merchant_id keyFileName = your_merchant_id keysDirectory = Resource 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 keyPassword = your_portfolio_id keyFileName = your_portfolio_id keysDirectory = Resource 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 _configurationDictionary.Add("runEnvironment", "api-matest.cybersource.com") // For PRODUCTION use // _configurationDictionary.Add("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
Source/Configuration.cs
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.cs to understand how to consume OAuth.
For further information, refer to the documentation at Cybersource OAuth 2.0.
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 Source\Configuration.cs
file. For example:
// For TESTING use
_configurationDictionary.Add("runEnvironment", "apitest.cybersource.com");
// For PRODUCTION use
// _configurationDictionary.Add("runEnvironment", "api.cybersource.com");
To use OAuth, switch to OAuth enabled URLs
// For TESTING use
_configurationDictionary.Add("runEnvironment", "api-matest.cybersource.com")
// For PRODUCTION use
// _configurationDictionary.Add("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.
Since v0.0.1.14, a new logging framework has been introduced in the SDK. This new logging framework makes use of NLog, and standardizes the logging so that it can be integrated with the logging in the client application.
More information about this new logging framework can be found in this file : Logging_Net461.md
This repository is distributed under a proprietary license.