Payabbhi 2.0.0
See the version list below for details.
dotnet add package Payabbhi --version 2.0.0
NuGet\Install-Package Payabbhi -Version 2.0.0
<PackageReference Include="Payabbhi" Version="2.0.0" />
paket add Payabbhi --version 2.0.0
#r "nuget: Payabbhi, 2.0.0"
// Install Payabbhi as a Cake Addin #addin nuget:?package=Payabbhi&version=2.0.0 // Install Payabbhi as a Cake Tool #tool nuget:?package=Payabbhi&version=2.0.0
Payabbhi .NET Library
Make sure you have signed up for your Payabbhi Account and downloaded the API keys from the Portal.
Requirements
.NET 4.0 and later.
Installation
Install via NuGet
From the command line:
$ nuget install Payabbhi
From Package Manager:
PM> Install-Package Payabbhi
From within Visual Studio:
- Open the Solution Explorer.
- Right-click on a project within your solution.
- Click on
Manage NuGet Packages
. - Click on the
Browse
tab and search forPayabbhi
. - Click on the
Payabbhi
package and clickInstall
.
Documentation
Please refer to:
Usage
A typical usage of the Payabbhi .NET Library is shown below:
using Payabbhi;
// Set your credentials
Client client = new Client('<accessId>', '<secretKey>');
// Create an order
Order order = client.Order.Create(
new Dictionary<string, object>() {
{"merchant_order_id", '<merchantOrderId>'},
{"amount", 100},
{"currency", "INR"},
{"payment_auto_capture", false}
});
For more examples see the .NET API documentation
Verifying payment signature
Payabbhi .NET library provides utility functions for verifying the payment signature received in the payment callback. The snippet below demonstrates a typical usage:
client.Utility.VerifyPaymentSignature(
new Dictionary<string, string>() {
{"payment_signature", '<paymentSignature>'},
{"order_id", '<orderId>'},
{"payment_id", '<paymentId>'}
});
Verifying webhook signature
Payabbhi .NET library provides utility functions for verifying the webhook signature. The snippet below demonstrates a typical usage:
client.Utility.VerifyWebhookSignature(payload,actualSignature,secret);
// replayInterval is optional
client.Utility.VerifyWebhookSignature(payload,actualSignature,secret,replayInterval);
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net40 is compatible. net403 was computed. net45 is compatible. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
-
- Newtonsoft.Json (>= 10.0.3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.