The Recurly .NET Client library is an open source library to interact with Recurly's subscription management from your ASP.Net website. The library interacts with Recurly's REST API. This library works with .NET 2.0 and greater.
The easiest way to get the source code is to click the Download Source button at the top of this page. Alternatively, you can use git. With git installed, the easiest way to download the Recurly .NET Client is with the git command:
git clone git://github.com/recurly/recurly-client-net.git C:\path\to\recurly
If you do not have git and have some interest in learning about a wonderful source control tool, please check out the Github Guide for Windows.
Your API Key, and site subdomain can be specified in your web.config file:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<section name="recurly" type="Recurly.Configuration.RecurlySection,Recurly"/>
</configSections>
<recurly
apiKey="123456789012345678901234567890ab"
privateKey="123456789012345678901234567890cd"
subdomain="company" />
</configuration>
Please note: API credentials changed with version v0.0.4.2. API Username and Environment are no longer required. Password has been renamed to API Key.
- Write unit tests
- List/paginate through accounts, transactions, etc
- Process POST notifications
- Member variable validation
- Validate credit card information before submitting request
Please see the Recurly API for more information.