RebrandlyNET 1.0.0
dotnet add package RebrandlyNET --version 1.0.0
NuGet\Install-Package RebrandlyNET -Version 1.0.0
<PackageReference Include="RebrandlyNET" Version="1.0.0" />
paket add RebrandlyNET --version 1.0.0
#r "nuget: RebrandlyNET, 1.0.0"
// Install RebrandlyNET as a Cake Addin #addin nuget:?package=RebrandlyNET&version=1.0.0 // Install RebrandlyNET as a Cake Tool #tool nuget:?package=RebrandlyNET&version=1.0.0
RebrandlyNET
A .NET SDK for the Rebrandly API.
RebrandlyNET is a minimal dependency, straightforward SDK of the Rebrandly REST API that's easy to use.
Usage
Starting the client is super-easy, just provide your API key that you got from Rebrandly.
string apiKey = "MY_API_KEY";
var client = new RebrandlyClient(apiKey);
To add a workspace, set the Workspace property, which will automatically add the necessary headers! Alternatively, you can get all of your workspaces, and choose one.
var workspaces = await rebrand.Account.GetWorkspaces();
client.Workspace = workspaces[0].ID;
Creating a new link
To create a new link, either create an LinkCreationArgs
object or use string parameters. RebrandlyNET let's you create links using either GET
or POST
.
string testURL = "https://www.google.com";
string testvanity = "google10310";
string alttestURL = "https://www.youtube.com";
string alttestvanity = "thegreatestyoutubevideo";
var link = await client.Links.CreateGET(testURL, testvanity);
await client.Links.Delete(link.ID);
link = await client.Links.Create(alttestURL, alttestvanity);
await client.Links.Delete(link.ID);
Pagination, or why are there so many ListAll() methods?
Rebrandly uses pagination on nearly all of it's GET
methods. This can get annoying when trying to retrieve every element. RebrandlyNET gives you easy methods, usually called ListAll()
that run through all the pages to get you an array of every element. RebrandlyNET also provides some nifty string enums that make the API a lot easier to use.
//Gets the first 25 tags on the server.
var tagpage = await client.Tags.List(OrderDir.asc, 25);
//Gets every tag on the server.
var alltags = await client.Tags.ListAll(OrderDir.asc);
Ongoing
- Implementing OAUTH2 support.
- Fixing some HTTP errors that pass through
.EnsureSuccessStatusCode()
. - Adding better tests.
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 | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.1 is compatible. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | 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.1
- Newtonsoft.Json (>= 12.0.3)
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.0 | 924 | 3/7/2021 |
Initial commit, added tests for all of the basic functionality.