IssuuSDK - An open-source Unofficial SDK for integrating with the Issuu V2 API
The IssuuSDK can be used to manage your Issuu documents.
Quick start (.NET Core & .NET 5+)
Install the NuGet package:
dotnet add package IssuuSDK
Then add the IssuuSDK to your services:
services.AddIssuu();
Add your auth token to your config:
{
"Issuu": {
"Token": "YOUR_AUTH_TOKEN"
}
}
Then use it in your code:
public class MyClass(IIssuuApiClient client)
{
public async Task DoSomething()
{
var drafts = await client.GetDraftsAsync();
}
}
Open source
This project uses open-source components. Please consider contributing to, or sponsoring these amazing projects:
- .NET Platform by Microsoft and contributors
- Ben.Demystifier by Ben Adams
- Docusaurus by Meta Platforms, inc, and contributors
- FluentValidation by Jeremy Skinner and contributors
- MinVer by Adam Ralph and constributors
- SlugGenerator by Artm Polishchuck