BaseCampApi 1.0.0
See the version list below for details.
dotnet add package BaseCampApi --version 1.0.0
NuGet\Install-Package BaseCampApi -Version 1.0.0
<PackageReference Include="BaseCampApi" Version="1.0.0" />
paket add BaseCampApi --version 1.0.0
#r "nuget: BaseCampApi, 1.0.0"
// Install BaseCampApi as a Cake Addin #addin nuget:?package=BaseCampApi&version=1.0.0 // Install BaseCampApi as a Cake Tool #tool nuget:?package=BaseCampApi&version=1.0.0
BaseCampApi
This is a C# wrapper to (most of) the Basecamp 3 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.
Using the API
In order to use the Basecamp API you need to register your application at (launchpad.37signals.com/integrations)[launchpad.37signals.com/integrations]. This returns a Client Id and Client Secret. When registering, you have to provide a redirect uri for the OAuth2 authorisation process. For simple use, provide something like http://localhost:9999 (choose another port number if you like).
This information has to be provided in an object that implements the ISettings interface, which is then used to create a BaseCampApi instance. A Settings class which imnplements this interface is provided, to save you work. This provides a static Load method, reads the settings from LocalApplicationData/BaseCampApi/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.
As part of the OAuth2 process, the default implementation starts a browser to obtain authorisation. This is done by calling OpenBrowser. You can provide an alternative action to open a browser, or otherwise call the 37signals page to ask for authorisation.
Once authorisation is complete, the OAuth2 process will redirect the browser to the redirect url you provide in the settings. The default implementation provides an extremely dumb web server to listed on the redirect url port, and collect the code=
parameter from the request. You can provide an alternative by providing a WaitForRedirect
async function.
These options would be useful if you were using the Api in your own Web Server, for instance.
License
This wrapper is licensed under creative commons share-alike, see license.txt.
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.
This replaces BaseCampApiNetCore