Legal Notice
The opinions expressed herein are my own personal opinions and do not represent my employer’s view in anyway.Top Posts
- C# HttpClient POST or PUT Json with content type application/json
- C# get results from Task.WhenAll
- Run tasks in parallel using .NET Core, C# and async coding
- C# DateTime to UNIX timestamps
- C# Get expiry timestamp from JWT token
- Using C# HttpClient from Sync and Async code
- C# Log to Application Insights and File from your .NET 6 Application
Archive
Meta
Tag Archives: IHttpClientFactory
Get Users from IdentityServer using .NET Core
If you wish to poke around in the IdentityServer users database directly, the API seems a little bit fishy. This is because the direct data access are very low level, and consists of HttpClient extension methods. They are, in fact, … Continue reading
Posted in .net, .NET Core, c#, General .NET
Tagged Authentication, Authorization, HttpClient, IdentityServer, IHttpClientFactory, JWT
Leave a comment
HttpClient retry on HTTP timeout with Polly and IHttpClientBuilder
The Polly retry library and the IHttpClientBuilder is a match made in heaven as it defines all the retry logic at startup. The actual HttpClient calls are therefore untouched by any retry code. The retry logic is called policies, and … Continue reading
Posted in .net, .NET Core, c#
Tagged HttpClient, IHttpClientBuilder, IHttpClientFactory, Polly
3 Comments
Add a UserAgent to the IHttpClientFactory in .NET Core
Using a IHttpClientFactory to create HttpClient connections have a number of advantages, as you can configure several httpclients on startup. Each client will be reused, including the properties attached to that client. In a previous post I showed how to … Continue reading
HttpClient retry mechanism with .NET Core, Polly and IHttpClientFactory
A lot of HttpClient errors are temporary and is caused by server overload, temporary nerwork timeouts and generic gliches in the Matrix. These scenarios can be dealt with using a retry pattern. In .NET Core, the most common retry library … Continue reading