paypal.dotnetcore
1.0.0
See the version list below for details.
dotnet add package paypal.dotnetcore --version 1.0.0
NuGet\Install-Package paypal.dotnetcore -Version 1.0.0
<PackageReference Include="paypal.dotnetcore" Version="1.0.0" />
paket add paypal.dotnetcore --version 1.0.0
#r "nuget: paypal.dotnetcore, 1.0.0"
// Install paypal.dotnetcore as a Cake Addin #addin nuget:?package=paypal.dotnetcore&version=1.0.0 // Install paypal.dotnetcore as a Cake Tool #tool nuget:?package=paypal.dotnetcore&version=1.0.0
PayPal .NET SDK
This is a fork from the original v1 PayPal SDK that seems to be abandoned by PayPal.
The old documentation is still valid and my plan is to update it as I move forward with the library.
It seemed like none of the multiple packages available on nuget.org are working well so that's the reason I created yet another fork.
Configuration
The original configuration of the SDK was based on the old app.config
paradigm and has been migrated to the new .NET Core standard.
appsettings.json
example:
{
"PayPal": {
"mode": "sandbox",
"connectionTimeout": 360000,
"requestRetries": 3,
"clientId": "AYrAaReQUybACfY3NJNZ1CNpbf8IdERKSHvA-urkP5G8YXzJd2khdkD8LT2WpDMUhXjn8NPl4sTFnYa2",
"clientSecret": "EObW1isFRDZKO6xe2FvpwABDdOsGrhrsKqMrWzSC4Ndz8k5WeYnpYofCm9EAdibSEBv5Gel6J86TzENj"
}
}
Examples
Examples can be found inside the Samples.old
folder as they are migrated. Once they are all migrated, they will live in the Samples
folder.
Even though the samples provided are not really comprehensive, they are a start.
How to contribute / I want to help
There are multiple things that are necessary to bring this old library into life. Here are some if you are interested:
- Migrate samples from old ASPX style pages into Controllers or Razor Pages
- Provide documentation on how to setup, configure and debug the SDK (the original examples are not comprehensive enough IMO)
- Improve the internal implementation of basic things such as
HttpConnection
, exception handling, logging, etc
If there is anything that should be worked on first, please open an issue and I'm happy to help. If you feel like helping with any of these tasks just send a PR 😃
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 is compatible. netcoreapp2.2 is compatible. 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. |
-
.NETCoreApp 2.1
- Microsoft.Extensions.Configuration (>= 2.2.0)
- Microsoft.Extensions.Configuration.Binder (>= 2.2.4)
- Microsoft.Extensions.Configuration.Json (>= 2.2.0)
- Newtonsoft.Json (>= 12.0.2)
-
.NETCoreApp 2.2
- Microsoft.Extensions.Configuration (>= 2.2.0)
- Microsoft.Extensions.Configuration.Binder (>= 2.2.4)
- Microsoft.Extensions.Configuration.Json (>= 2.2.0)
- Newtonsoft.Json (>= 12.0.2)
-
.NETStandard 2.0
- Microsoft.Extensions.Configuration (>= 2.2.0)
- Microsoft.Extensions.Configuration.Binder (>= 2.2.4)
- Microsoft.Extensions.Configuration.Json (>= 2.2.0)
- Newtonsoft.Json (>= 12.0.2)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Fork from official v1 PayPal .NET SDK ported to DotNet Core.