My Project
|
The Electronic Bill Presentment and Payments (EBPP) API enables businesses to accept bank account, credit and debit card payment
The DLLs included in the package may not be the latest version. We recommend using NuGet to obtain the latest version of the packages: ``` Install-Package RestSharp Install-Package Newtonsoft.Json Install-Package Common.Logging -Version 3.4.1 Install-Package Common.Logging.Core -Version 3.4.1 ```
Download the library (latest version is recommended) from "here" Then include the DLL (under the bin
folder) in the C# project, and use the namespaces: ```csharp using Orbipay.PaymentsApi.Client; using Orbipay.PaymentsApi.Client.Wrappers; ```
Enable the logging to have better insight into what the library is doing. To enable logs [follow]https://cmatskas.com/an-introduction-to-common-logging-api-2/.
This library provides a way to configure http_timeout through environment variable.
Below is the example to set timeout using environment variable
```csharp System.Environment.SetEnvironmentVariable("ORBIPAY_PAYMENTS_API_TIMEOUT_SECONDS", "60"); ```