Albert Zakiev
Albert Zakiev
Fidler logs Retrieve access_token ``` POST https://www.bungie.net/platform/app/oauth/token HTTP/1.1 Host: www.bungie.net User-Agent: Microsoft ASP.NET Core OAuth handler traceparent: 00-be2254e2f6cdfcc5979241a28582e500-a5400f316989697d-00 Content-Type: application/x-www-form-urlencoded Content-Length: 204 redirect_uri=***&client_id=***&client_secret=***&code=***&grant_type=authorization_code HTTP/1.1 200 OK Date: Thu, 27 Jan...
### Issue Example of code ``` var loadUserResult = await LoadUserAsync(userId, cancellationToken); if (loadUserResult.IsFailed) { ... Some extra actions Result.Fail("Error loading user"); // Here is return missed and failure is...
WireMock.Net forces me to use `Newtonsoft.Json` as the only serialization option. In modern .NET applications that have migrated to `System.Text.Json`, this creates dependency conflicts, performance overhead, and inconsistent serialization behavior...