DiscourseApi 1.0.11

There is a newer version of this package available.
See the version list below for details.
dotnet add package DiscourseApi --version 1.0.11
NuGet\Install-Package DiscourseApi -Version 1.0.11
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="DiscourseApi" Version="1.0.11" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add DiscourseApi --version 1.0.11
#r "nuget: DiscourseApi, 1.0.11"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install DiscourseApi as a Cake Addin
#addin nuget:?package=DiscourseApi&version=1.0.11

// Install DiscourseApi as a Cake Tool
#tool nuget:?package=DiscourseApi&version=1.0.11

DiscourseApi

This is a C# wrapper to (the most important bits of) the Discourse API.

It is provided with a Visual Studio 2019 build solution for .NET Standard, so can be used with any version of .NET.

There is a test project (for net core only) which also demonstrates usage.

Setup before using the API

In order to use the Discourse API you need to obtain an ApiKey from the relevant Discourse server admin panel. You also need to supply an Api Username.

This information has to be provided in an object that implements the ISettings interface, which is then used to create a DiscourseApi instance. A Settings class which implements this interface is provided, to save you work. This provides a static Load method, reads the settings from LocalApplicationData/DiscourseApi/Settings.json. On a Windows 10 machine, LocalApplicationData is C:\Users\<USER>\AppData\Local, on Linux it is ~user/.local/share.

Testing

In order to run the Unit Tests provided, you must provide additional data in your ISettings object - see the Settings object in UnitTest1.cs.

Hooks for more complex uses

You do not have to use the provided Settings class, provided you have a class that implements ISettings.

License

This wrapper is licensed under creative commons share-alike, see license.txt.

Using the Api

The Unit Tests should give you sufficient examples on using the Api.

An Api instance is created by passing it an object that implements ISettings (a default class is provided which will read the settings from a json file). The Api instance is IDisposable, so should be Disposed when no longer needed (this is because it contains an HttpClient).

C# classes are provided for the objects you can send to or receive from the Discourse api. For instance the Group object represents groups. These main objects have methods which call the Discourse api - such as Group.Create to create a new group, Group.Get to get group details, etc.

Some Api calls return a list of items (such as Group.ListAll). These are returned as a subclass of ApiList<Group>. The Discourse api itself usually only returns the first few items in the list, and needs to be called again to return the next chunk of items. This is all done for you by ApiList - it has a method called All(Api) which will return an IEnumerable of the appropriate listed object. Enumerating the enumerable will return all the items in the first chunk, then call the Discourse api to get the next chunk, return them and so on. It hides all that work from the caller, while remaining as efficient as possible by only getting data when needed - for instance, using Linq calls like Any or First will stop getting data when the first item that matches the selection function is found.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.29 1,570 11/16/2020
1.0.28 609 9/8/2020
1.0.27 528 7/14/2020
1.0.26 647 4/14/2020
1.0.25 463 4/7/2020
1.0.24 488 3/17/2020
1.0.23 546 2/21/2020
1.0.22 666 2/16/2020
1.0.21 464 2/11/2020
1.0.20 556 12/16/2019
1.0.19 477 12/9/2019
1.0.18 514 12/6/2019
1.0.17 545 12/4/2019
1.0.16 478 12/2/2019
1.0.15 501 11/28/2019
1.0.13 511 11/20/2019
1.0.12 507 11/18/2019
1.0.11 546 10/2/2019
1.0.10 535 9/5/2019
1.0.8 490 9/5/2019
1.0.6 501 8/30/2019
1.0.5 571 8/22/2019
1.0.2 562 8/15/2019
1.0.1 565 7/16/2019
1.0.0 532 7/11/2019

Fix bug in group list - was stopping early if there was more than 1 page.