pavaniA
pavaniA

Reputation: 29

Paypal integration in c# .net

I'm working on c#.net project, in that i need to add vantiv payment process to my project and i'd like to use PayPal SDK. Can anyone please tell me how to integrate PayPal's SDK for free.

Thank you.

Upvotes: 0

Views: 3889

Answers (1)

Asaf Savich
Asaf Savich

Reputation: 653

There's a few good ones. I always prefer PayPal's github docs - Payapal .NET Github Wiki

First you need to Sign-Up to a PayPal developer's account and then update your web.config with the given key using the following code (taken from the link above):

<configuration>
  <configSections>
    <section name="paypal" type="PayPal.SDKConfigHandler, PayPal" />
  </configSections>

  <!-- PayPal SDK settings -->
  <paypal>
    <settings>
      <add name="mode" value="sandbox" />
      <add name="clientId" value="__CLIENT_ID__" />
      <add name="clientSecret" value="__CLIENT_SECRET__" />
    </settings>
  </paypal>
</configuration>

Good luck my friend.

Upvotes: 2

Related Questions