Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 919 Bytes

README.md

File metadata and controls

20 lines (15 loc) · 919 Bytes

Sidio.RevenueCat

An unofficial .NET SDK for the RevenueCat API and webhooks. This library is not affiliated with RevenueCat.

build NuGet Version

Installation

Add the package to your project.

Project status

This package is currently in preview and is not yet feature complete.

Usage

Webhooks

  • Capture the raw JSON and use the IRevenueCatWebhookService to parse the webhook data:
private readonly IRevenueCatWebhookService _webhookService = new RevenueCatWebhookService();

var parseResult = _webhookService.TryParseSubscriptionEvent(rawJson, out var subscriptionEvent);