0

Does the PayPal .NET SDK 1.7.2 (https://www.nuget.org/packages/PayPal/) support Express Checkout? I can't seem to find it in the sample code.

If not, does it provide another mechanism to take payment on an ecommerce site?

Or should I be using the PayPal Merchant SDK for .NET 2.16.117 (https://www.nuget.org/packages/PayPalMerchantSDK/)

There was a note on github about the merchant SDK being deprecated due to the TLS/SSL changes coming down the pipe.

Tomas Beblar
  • 468
  • 4
  • 18

1 Answers1

2

Yes, the REST Api (your first link) calls it Paypal Payment - you'll recognize the flow maps to the "classic" Express Checkout (but obviously with a new implementation). Hth...

EdSF
  • 11,753
  • 6
  • 42
  • 83
  • Awesome thanks. Is this the right API to use? Or is there a better way to implement Express Checkout? – Tomas Beblar May 03 '16 at 17:50
  • @TomasBeblar Depends on what you mean by "better"..it's _not_ the only way to implement Express Checkout, you can use "Classic" NVP/SOAP. I _personally_ prefer [In Context](https://developer.paypal.com/docs/classic/express-checkout/in-context/) which IINM uses "classic" API (nvp/soap) _only_ - if it meets your requirements and/or are eligible for it..Hth... – EdSF May 03 '16 at 21:23