Paypal Merchant SDK alternatives and similar packages
Based on the "E-Commerce and Payments" category.
Alternatively, view Paypal Merchant SDK alternatives based on common mentions on social networks and blogs.
-
GrandNode
DISCONTINUED. Open source, headless, multi-tenant eCommerce platform built with .NET Core, MongoDB, AWS DocumentDB, Azure CosmosDB, Vue.js. -
Stripe.Net
Stripe.net is a sync/async .NET 4.6.1+ client, and a portable class library for stripe.com.
CodeRabbit: AI Code Reviews for Developers

* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of Paypal Merchant SDK or a related project?
README
PayPal Merchant SDK for .NET
TLSv1.2 Update
The Payment Card Industry (PCI) Council has mandated that early versions of TLS be retired from service. All organizations that handle credit card information are required to comply with this standard. As part of this obligation, PayPal is updating its services to require TLS 1.2 for all HTTPS connections. At this time, PayPal will also require HTTP/1.1 for all connections. Click here for more information
A new
mode
has been created to test if your server/machine handles TLSv1.2 connections. Please usesecurity-test-sandbox
mode instead ofsandbox
to verify. You can return back tosandbox
mode once you have verified.
The repository contains the PayPal Merchant SDK C#.NET Class Library Application and the PayPalAPISample Sample ASP.NET C# Web Application.
SDK Integration
Integrate the PayPal Merchant SDK with an ASP.NET Web Application
Use NuGet to install the 'PayPalMerchantSDK' package
The NuGet package installs the dependencies to the solution and automatically updates the project
Dependent library references: • 'log4net.dll' • 'PayPalCoreSDK.dll' • 'PayPalMerchantSDK.dll' • 'PayPalPermissionsSDK.dll'
Namespaces: • PayPal • PayPal.PayPalAPIInterfaceService • PayPal.PayPalAPIInterfaceService.Model • PayPal.Util • PayPal.Exception
Support
Please contact PayPal Technical Support for any live or account issues.
Using Classic SDKs and PayPal .NET SDK
If you need to use one of the Classic SDKs along with the PayPal .NET SDK (which uses PayPal's REST APIs), then you will need to do the following to your project to allow everything to work properly:
- Update your project's web.config to the following:
<configuration>
<configSections>
<section name="paypal" type="PayPal.SDKConfigHandler, PayPal" />
</configSections>
<!-- PayPal SDK settings -->
<paypal>
<settings>
<add name="mode" value="sandbox"/>
<!-- REST API credentials -->
<add name="clientId" value="_client_Id_"/>
<add name="clientSecret" value="_client_secret_"/>
<!-- Classic API credentials -->
<add name="account1.apiUsername" value="_api_username_"/>
<add name="account1.apiPassword" value="_api_password_"/>
</settings>
</paypal>
</configuration>
- When creating the main services object for any of the Classic SDKs, first create the
config
to be used by the service using theConfigManager
instance from thePayPal.Api
namespace. Then pass thatconfig
object into the constructor for the Classic SDK service object:
// Get the config properties from PayPal.Api.ConfigManager
Dictionary<string, string> config = PayPal.Api.ConfigManager.Instance.GetProperties();
// Create the Classic SDK service instance to use.
PayPalAPIInterfaceServiceService service = new PayPalAPIInterfaceServiceService(config);
Help
Merchant.bat - Automation script that builds the PayPal Merchant SDK C#.NET Class Library Application in release mode and copies the built dlls to the lib folder in the PayPalAPISample Sample ASP.NET C# Web Application
Changelog.txt - Release Notes
DotNetSDK.SandcastleGUI - Tool to create the documentation of the PayPal Merchant SDK
LICENSE.txt - PayPal, Inc. SDK License
Installing NuGet in Visual Studio 2010 and 2012.pdf - Guide to Install NuGet in Visual Studio 2010 and 2012
Integrating NuGet with Visual Studio 2005 and 2008.pdf - Guide to Integrate NuGet with Visual Studio 2005 and 2008
*Note that all licence references and agreements mentioned in the Paypal Merchant SDK README section above
are relevant to that project's source code only.