FlurlHttpClient 1.1.0
dotnet add package FlurlHttpClient --version 1.1.0
NuGet\Install-Package FlurlHttpClient -Version 1.1.0
<PackageReference Include="FlurlHttpClient" Version="1.1.0" />
<PackageVersion Include="FlurlHttpClient" Version="1.1.0" />
<PackageReference Include="FlurlHttpClient" />
paket add FlurlHttpClient --version 1.1.0
#r "nuget: FlurlHttpClient, 1.1.0"
#addin nuget:?package=FlurlHttpClient&version=1.1.0
#tool nuget:?package=FlurlHttpClient&version=1.1.0
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 requestPostAsync<TP,T>(HttpClientRequest< request)
: Make a post requestPutAsync<TP,T>(HttpClientRequest<T> request)
: Make a put requestDeleteAsync<TP,T>(HttpClientRequest<T> request)
: Make a delete requestPatchAsync<TP,T>(HttpClientRequest<T> request)
: Make a patch requestPostFormDataAsync<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 requestToken
: The authorization token to be used for the requestIsOauthToken
: A boolean indicating if the token is an oauth token or jwt tokenData
: 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 dataCode
: The status code of the responseMessage
: The message of the responseIsSuccessful
: A boolean indicating if the request was successful
License
This project is licensed under the MIT License.
Contributing
- Fork the repository.
- Create a new branch.
- Make your changes.
- Commit your changes.
- Push your changes to your fork.
- 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 | Versions 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. |
-
net6.0
- Flurl.Http (>= 3.0.1)
- Microsoft.AspNetCore.Http.Features (>= 3.1.32)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 7.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version 1.1.0 - Initial Release