PayPal in ASP.NET Core

asp.net-core-1.0, c#, paypal

Solution

In case somebody finds this question I'll post an update.

As of now, there is no official release of a .net core sdk for Paypal but looking on github there has been a lot of progress since this question was asked.

The developper have currently released an official beta version of the sdk that is available for fork or download here : https://github.com/paypal/PayPal-NET-SDK/tree/2.0-beta

They even have a migration guide if you were previously using the first version of their sdk.

Problem

How do I integrate with the `PayPal API` in an `ASP.NET Core` app? I have tried various libraries but none of them are compatible with `ASP.NET Core`... how do I do it?

Original source

Related problems