FlurlHttpClient 1.1.0

dotnet add package FlurlHttpClient --version 1.1.0
                    
NuGet\Install-Package FlurlHttpClient -Version 1.1.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="FlurlHttpClient" Version="1.1.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="FlurlHttpClient" Version="1.1.0" />
                    
Directory.Packages.props
<PackageReference Include="FlurlHttpClient" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add FlurlHttpClient --version 1.1.0
                    
#r "nuget: FlurlHttpClient, 1.1.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=FlurlHttpClient&version=1.1.0
                    
Install FlurlHttpClient as a Cake Addin
#tool nuget:?package=FlurlHttpClient&version=1.1.0
                    
Install FlurlHttpClient as a Cake Tool

FlurlHttpClient

A simple wrapper around Flurl.Http that allows you to easily make http requests and deserialize the response.

Usage

Add FlurlHttpClient to your services in your Startup.cs or Program.cs file .

services.AddFlurlHttpClient();

Inject IHttpClientService into your class and use it to make http requests.

public class MyService:IMyService
{
    private readonly IHttpClientService _flurlHttpClient;

    public MyService(IHttpClientService flurlHttpClient)
    {
        _flurlHttpClient = flurlHttpClient;
    }

    public async Task<MyResponse> GetMyResponse()
    {
        var request=HttpClientRequest<object>{
            Url="https://api.example.com/my-endpoint",
            Token="token",
            IsOauthToken=false,
            Data=null
        };
        
        return await _flurlHttpClient.GetAsync<MyResponse,object>(request);
    }
}

// your response model
public class MyResponse
{
    // your properties
}

Available Methods

  • GetAsync<TP,T>(HttpClientRequest request) : Make a get request
  • PostAsync<TP,T>(HttpClientRequest< request) : Make a post request
  • PutAsync<TP,T>(HttpClientRequest<T> request) : Make a put request
  • DeleteAsync<TP,T>(HttpClientRequest<T> request) : Make a delete request
  • PatchAsync<TP,T>(HttpClientRequest<T> request) : Make a patch request
  • PostFormDataAsync<PT,T>(HttpClientRequest<T> request) : Make a multipart form data request

HttpClientRequest

The HttpClientRequest class is used to pass the request. It contains the following properties:

  • Url : The url of the request
  • Token : The authorization token to be used for the request
  • IsOauthToken : A boolean indicating if the token is an oauth token or jwt token
  • Data : The data to be sent with the request body

ApiResults<T>

The ApiResults<T> class is used to return the response from the http request. It contains the following properties:

  • Data : The response data
  • Code : The status code of the response
  • Message : The message of the response
  • IsSuccessful : A boolean indicating if the request was successful

License

This project is licensed under the MIT License.

Contributing

  1. Fork the repository.
  2. Create a new branch.
  3. Make your changes.
  4. Commit your changes.
  5. Push your changes to your fork.
  6. Submit a pull request.

License

This project is licensed under the MIT License.

Support

For any questions or issues, please open an issue on GitHub or contact us at <a href="mailto:developer.biliksuun@gmail.com"> developer.biliksuun@gmail.com</a>.

Authors

  • Samuel Biliksuun
Product 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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.1.0 88 1/5/2025
1.0.0 103 1/4/2025

Version 1.1.0 - Initial Release