PocketSmith.NET
1.0.1
See the version list below for details.
dotnet add package PocketSmith.NET --version 1.0.1
NuGet\Install-Package PocketSmith.NET -Version 1.0.1
<PackageReference Include="PocketSmith.NET" Version="1.0.1" />
paket add PocketSmith.NET --version 1.0.1
#r "nuget: PocketSmith.NET, 1.0.1"
// Install PocketSmith.NET as a Cake Addin #addin nuget:?package=PocketSmith.NET&version=1.0.1 // Install PocketSmith.NET as a Cake Tool #tool nuget:?package=PocketSmith.NET&version=1.0.1
PocketSmith.NET
A .NET Core API library for PocketSmith accounting suite. <br> PocketSmith Wegsite: https://www.pocketsmith.com<br> PocketSmith API Docs: https://developers.pocketsmith.com<br>
Getting Started
You'll need your PocketSmith UserId and an API Key. *PocketSmith's Rest API support's OAuth2. OAuth2 is not currently supported in this library.
Services
This library uses a simple CRUD service architecture to make calls to PocketSmith's REST API.
- AccountService
- AttachmentService
- BudgetService
- CategoryService
- CategoryRulesService
- CurrencyService
- EventService
- InstitutionService
- LabelService
- SavedSearchService
- TimeZoneService
- TransactionAccountService
- TransactionService
- UserService
Creating Service Instances
Services rely on HttpClient which requires careful management to avoid socket exhaustion. There are three ways to create a service instance, two of which handle HttpClient instance management automatically.
Create By Factory
Services can be instantiated using the PocketSmithServiceFactory. Replace the userId and apiKey arguments with your [int]userId and [string]apiKey.
{
var accountService = PocketSmithAccountFactory.CreateService<AccountService>(userId, "apiKey")
}
Create By Dependency Injection - ASP.Net Core Only
Dependency injection uses the ASP.Net Core service provider to automatically manage dependencies. This method requires the userId and apiKey to be stored in the application configuration. It uses MIcrosofts IConfiguration interface. You can store these parameters in appsettings.json, Azure configuration, etc.
Let's use the appsettings.json file for ASP.Net Core as an example. Here we've just added a section for the pocketsmith configs to the default file in a new ASP.Net Core project.
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*",
"pocketSmith": {
"userId": 12345,
"apiKey": "insert_apiKey_here"
}
}
Now we'll call the service collection extension to add PocketSmithServices to the service collection. This is normally done in the Startup
or Program
class.
New projects built with .Net 6.0 & later do not have a Startup class by default and handle all the startup logic in the Program class.
In the Program class:
var builder = WebApplication.CreateBuilder(args);
// Add services to the container.
builder.Services.AddPocketSmithServices();
Finally, inject an instance of the required service using constructor injection.
public class SomeRandomService
{
private readonly IAttachmentService _attachmentService;
public SomeRandomService(IAttachmentService attachmentService)
{
_attachmentService = attachmentService;
}
public async Task DoSomethingAsync()
{
List<PocketSmithAttachment> attachments = await _attachmentService.GetAllAsync()
}
}
Create Directly (The Hard Way)
This is method requires extra care due to the fact that HttpClient instances are not managed automatically. You'll need to be sure to handle HttpClient management elsewhere in the application, otherwise you risk socket exhaustion which will cause your app to crash.
Here's an example of how you might do that. For this example let's assume we're working with ASP.Net Core.
First, you'll want to make sure your startup sequence (either in the Startup or Program class) adds an HttpClient to the service collection.
var builder = WebApplication.CreateBuilder(args);
// Add services to the container.
builder.Services.AddHttpClient
Then, you can create instances of the service, along with the required IApiHelper
dependency.
public class SomeRandomService
{
private readonly IHttpClientFactory _httpClientFactory;
public SomRandomService(IHttpClientFactory httpClientFactory)
{
_httpClientFactory = httpClientFactory;
}
public async Task DoSomethingAsync()
{
var apiHelper = new ApiHelper(_httpClientFactory.CreateClient());
//Replace '12345' and "apiKey" with the userId and apiKey.
var transactionService = new TransactionService(apiHelper, 12345, "apiKey");
var transactions = transactionService.GetAllAsync();
}
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. 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. |
-
net6.0
- FluentValidation (>= 11.3.0)
- Microsoft.AspNet.WebApi.Client (>= 5.2.9)
- Microsoft.Extensions.Configuration (>= 6.0.0)
- Microsoft.Extensions.Configuration.Abstractions (>= 6.0.0)
- Microsoft.Extensions.Http (>= 6.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.