Abenity.Perks
0.1.0-alpha
dotnet add package Abenity.Perks --version 0.1.0-alpha
NuGet\Install-Package Abenity.Perks -Version 0.1.0-alpha
<PackageReference Include="Abenity.Perks" Version="0.1.0-alpha" />
paket add Abenity.Perks --version 0.1.0-alpha
#r "nuget: Abenity.Perks, 0.1.0-alpha"
// Install Abenity.Perks as a Cake Addin #addin nuget:?package=Abenity.Perks&version=0.1.0-alpha&prerelease // Install Abenity.Perks as a Cake Tool #tool nuget:?package=Abenity.Perks&version=0.1.0-alpha&prerelease
Abenity.Perks
.NET Standard API Client for interacting with the Abenity Perks API This can be used alongside the Abenity.Members library to send users directly to a deal's details page.
This code has not been fully-tested and is provided as-is. I do not have an account with access to the Perks API so this is based on the limited documentation at Abenity's developer site. If you have any issues please let me know or submit a bug and I will take a look.
Configuration
The following information is required to authorize API requests.
- A "username" (an API key)
- Your client subdomain (mycompany.abenity.com)
Provided below is an example configuration section.
"Perks": {
"BaseUrl": "https://YOUR_COMPANY.abenity.com/perks/api",
"Username": "abcdefghijkl"
}
Example Usage
Register the API Client in your application's service provider
var config = new AbenityPerksConfiguration();
Configuration.Bind("Perks", config);
services.AddSingleton(config);
services.AddHttpClient();
services.AddScoped<IAbenityPerksApiClient, AbenityPerksApiClient>();
Inject it into your service/controller and make a call
private readonly IAbenityPerksApiClient perksClient;
public MyService(IAbenityPerksApiClient perksClient) {
this.perksClient = perksClient;
}
// Get offers using a category object
public async Task<IEnumerable<OfferSet>> GetOffers() {
var category = (await perksClient.GetCategoriesAsync()).FirstOrDefault();
var deals = await perksClient.GetOffersAsync(category);
return deals;
}
// Get offers using a category key
public Task<IEnumerable<OfferSet>> GetOffers(string key) => perksClient.GetOffersAsync(categoryKey: key);
// Get offers using a category ID
public Task<IEnumerable<OfferSet>> GetOffersById(string id) => perksClient.GetOffersAsync(categoryId: id);
Dependencies
- NewtonSoft.Json 10.0.3+
Changelog
0.1.0-alpha Initial Preview
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
- Newtonsoft.Json (>= 10.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 |
---|---|---|
0.1.0-alpha | 375 | 4/1/2020 |
Initial preview