HttpClientToCurlGenerator icon indicating copy to clipboard operation
HttpClientToCurlGenerator copied to clipboard

The HttpClientToCurl is a NuGet package for generating curl script of HttpClient in .NET ( C# | CSharp | Dotnet ) supported features: Post, Get, Put, and Delete. content types: application/json, text/...

Results 8 HttpClientToCurlGenerator issues
Sort by recently updated
recently updated
newest added

When building my project I get the following warning: Severity Code Description Warning CS8002 Referenced assembly 'HttpClientToCurl, Version=2.0.6.0, Culture=neutral, PublicKeyToken=null' does not have a strong name. Can you make NuGet...

help wanted

When setting config for showing curl script in the console or writing in a file. we need to write tests for these scenarios. I mean these files: https://github.com/amingolmahalle/HttpClientToCurlGenerator/tree/master/src/HttpClientToCurl/Config as of...

1. The generated string has multiple URL encodings (%3D->%253D) 2. The Headers value after production exists ";" Number, etc., causing inconsistency in the original User Agent In some application scenarios,...

Migrate the sample project and tests from .NET 8.0 to .NET 9.0

this feature will be quite handy to have . when you use ```DelegatingHandler``` , you can set a role or do something for entire services that use specific ```HttpClient```. Currently...

In production environments, it’s important to avoid logging sensitive data such as **API keys** or **authorization tokens**. I’d like to suggest adding a feature that allows masking specific headers when...

help wanted
good first issue

Currently, HttpClientToCurlGenerator allows generating CURL commands manually from HttpClient requests. In many production scenarios, developers want to log HTTP requests automatically for debugging, monitoring, or auditing. Integrating CURL generation directly...

enhancement

https://github.com/amingolmahalle/HttpClientToCurlGenerator/blob/7d18a69cd00e4861e609a3bd7b057db8c586c2ed/src/HttpClientToCurl/HttpClientToCurl.csproj#L7 --- #### Description The project currently targets: ```xml netstandard2.1 ``` While this works fine for modern .NET (Core 3.0+, .NET 5+, .NET 6+, etc.), it prevents consumers using **.NET...