7dbf20bd515ad428660fe36043a8798d3bee0656
Bumps [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.2.0 to 17.3.0. - [Release notes](https://github.com/microsoft/vstest/releases) - [Commits](https://github.com/microsoft/vstest/compare/v17.2.0...v17.3.0) --- updated-dependencies: - dependency-name: Microsoft.NET.Test.Sdk dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
NordigenDotNet
.NET client for the Nordigen API.
Usage
A separate NuGet package is provided for ASP.NET Core (IConfiguration and IServiceCollection) . For use outside of ASP.NET Core, see the configuration.
- Add configuration (for optional values see options)
"Nordigen": {
"SecretId": "",
"SecretKey": ""
}
- Register required services
// Only registers services from NordigenDotNet
services.AddNordigenDotNet(Configuration);
// Also registers the IDateTimeZoneProvider, which is required
serviceCollection.AddNordigenDotNet(Configuration, SystemClock.Instance, DateTimeZoneProviders.Tzdb);
- (Optional) Configure retries with Polly (NuGet package)
services
.AddNordigenDotNet(Configuration, SystemClock.Instance, DateTimeZoneProviders.Tzdb)
.AddPolicyHandler(...);
- Use
INordigenClientto access all endpoints, or one of the specific clients defined inINordigenClient
Known issues
- Does not support the premium endpoints
- Due to incomplete documentation and differences between data returned by each bank, not all data returned by the Nordigen API might be captured. When using the client with a new institution, consider inspecting the raw data returned by Nordigen. If something is missing, please create an issue
Description
Languages
C#
99.2%
Shell
0.8%