.NET Client Library
The Recurly .NET Client Library is an open source library to interact with Recurly’s subscription management from your ASP.Net website or .NET application. The library interacts with Recurly’s v1 REST API, and does not yet support the current v2 API. The library requires .NET version 2.0 or greater. It uses forward only stream readers and writers to be performant.
IMPORTANT: The Recurly .NET library does NOT currently support Recurly API v2 or Recurly.js. Basic v1 functionality is supported, and we’re working on getting full support for API v2 in the near future.
View the GitHub project site or download as a zip file.
Configuration
Your authentication credentials can be specified in your web.config:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<section name="recurly" type="Recurly.Configuration.RecurlySection,Recurly"/>
</configSections>
<recurly apiKey="abcdef01234567890abcdef01234567890" privateKey="abcdef01234567890abcdef01234567890" subdomain="company-test" />
</configuration>
Recurly API Google Group
Looking for help? Join our Recurly API Google Group to ask questions and share ideas with the Recurly API community.
