paysera-bank-client
1.0.0
dotnet add package paysera-bank-client --version 1.0.0
NuGet\Install-Package paysera-bank-client -Version 1.0.0
<PackageReference Include="paysera-bank-client" Version="1.0.0" />
paket add paysera-bank-client --version 1.0.0
#r "nuget: paysera-bank-client, 1.0.0"
// Install paysera-bank-client as a Cake Addin #addin nuget:?package=paysera-bank-client&version=1.0.0 // Install paysera-bank-client as a Cake Tool #tool nuget:?package=paysera-bank-client&version=1.0.0
What is paysera-bank-client?
WebToPay Lib DotNet is a library that will allow you to make payment requests to the Paysera website.
.NET Standard 2.0
Code samples
Before making a request you are to create an instance of the Client class.
int projectId = 0;
string signPassword = "32_character_sign_password";
Client client = new Client(projectId, signPassword);
Be sure to replace projectId and signPassword placeholder values with the actual data.
After creating the client object you can now create a new Micro/Macro request
public MacroRequest NewMacroRequest();
public MicroAnswer NewMicroAnswer();
After creating a new request, it is important that you specify the request parameters
string siteUrl = Request.Url.GetLeftPart(UriPartial.Authority);
request.OrderId = "ORDER0001";
request.Amount = 1000;
request.Currency = "LTL";
request.Country = "LT";
request.AcceptUrl = siteUrl + "/Accept.aspx";
request.CancelUrl = siteUrl + "/Cancel.aspx";
request.CallbackUrl = siteUrl + "/MacroCallback.aspx";
You can additionally set the request.Test = true;
if you wish to test the request.
Once the request has been built, you may build the request URL and redirect your client
string redirectUrl = client.BuildRequestUrl(request);
Response.Redirect(redirectUrl);
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.0.0 | 2,979 | 6/14/2022 |