NextcloudApi 1.0.8
See the version list below for details.
dotnet add package NextcloudApi --version 1.0.8
NuGet\Install-Package NextcloudApi -Version 1.0.8
<PackageReference Include="NextcloudApi" Version="1.0.8" />
paket add NextcloudApi --version 1.0.8
#r "nuget: NextcloudApi, 1.0.8"
// Install NextcloudApi as a Cake Addin #addin nuget:?package=NextcloudApi&version=1.0.8 // Install NextcloudApi as a Cake Tool #tool nuget:?package=NextcloudApi&version=1.0.8
NextcloudApi
This is a C# wrapper to (the most important bits of) the Nextcloud 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 Nextcloud API you need to supply an Api Username and Password. Some calls can be made using OAuth2, instead of providing a Username and Password in Settings, but any calls that insist on a recent password login (like most of the admin ones) will not work with OAuth2.
This information has to be provided in an object that implements the ISettings interface, which is then used to create a NextcloudApi 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/NextcloudApi/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 Nextcloud api. For instance the Group object represents groups. These main objects have methods which call the Nextcloud 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.List). These are returned as a subclass of ApiList<Group>. The Nextcloud 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 Nextcloud 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 | Versions 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. |
-
.NETStandard 2.0
- MimeMapping (>= 1.0.1.12)
- Newtonsoft.Json (>= 12.0.2)
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.18 | 122 | 10/28/2024 |
1.0.17 | 13,356 | 4/27/2021 |
1.0.16 | 359 | 4/27/2021 |
1.0.15 | 982 | 8/21/2020 |
1.0.14 | 1,156 | 2/20/2020 |
1.0.12 | 568 | 2/7/2020 |
1.0.11 | 528 | 2/5/2020 |
1.0.9 | 660 | 12/6/2019 |
1.0.8 | 529 | 12/4/2019 |
1.0.7 | 594 | 10/1/2019 |
1.0.6 | 499 | 9/23/2019 |
1.0.5 | 546 | 9/5/2019 |
1.0.4 | 528 | 9/5/2019 |
1.0.3 | 550 | 8/30/2019 |
1.0.2 | 561 | 8/22/2019 |
1.0.1 | 555 | 8/15/2019 |
1.0.0 | 578 | 8/9/2019 |
Improve logging