Stripe is a simple, developer-friendly way to accept payments online. We believe that enabling transactions on the web is a problem rooted in code, not finance, and we want to help put more websites in business.
Currently, the library is feature complete for the Stripe API which can be found here: https://stripe.com/docs/api
To install Stripe, run the following command in the Package Manager Console
PM> Install-Package Stripe
var card = new CreditCard {
Number = "4111111111111111",
ExpMonth = 3,
ExpYear = 2015
};
var api = new StripeClient("Your API Key");
var response = api.CreateCharge(
amount: 100.00, // $100
currency: "usd",
card: card);
if (response.Paid) {
Console.WriteLine("Whoo Hoo... We made our first sale!");
}
- Nick Berardi (https://github.com/nberardi)
Copyright 2011 Stripe, Inc.