VOOZH about

URL: https://www.nuget.org/packages/Flurl.Http.Signed/

⇱ NuGet Gallery | Flurl.Http.Signed 4.0.2




👁 Image
Flurl.Http.Signed 4.0.2

dotnet add package Flurl.Http.Signed --version 4.0.2
 
 
NuGet\Install-Package Flurl.Http.Signed -Version 4.0.2
 
 
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="Flurl.Http.Signed" Version="4.0.2" />
 
 
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Flurl.Http.Signed" Version="4.0.2" />
 
Directory.Packages.props
<PackageReference Include="Flurl.Http.Signed" />
 
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 Flurl.Http.Signed --version 4.0.2
 
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Flurl.Http.Signed, 4.0.2"
 
 
#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.
#:package Flurl.Http.Signed@4.0.2
 
 
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Flurl.Http.Signed&version=4.0.2
 
Install as a Cake Addin
#tool nuget:?package=Flurl.Http.Signed&version=4.0.2
 
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact its maintainers for support.

Flurl

👁 build
👁 NuGet Version
👁 NuGet Downloads

Flurl is a modern, fluent, asynchronous, testable, portable, buzzword-laden URL builder and HTTP client library.

var result = await "https://api.mysite.com"
 .AppendPathSegment("person")
 .SetQueryParams(new { api_key = "xyz" })
 .WithOAuthBearerToken("my_oauth_token")
 .PostJsonAsync(new { first_name = firstName, last_name = lastName })
 .ReceiveJson<T>();

[Test]
public void Can_Create_Person() {
 // fake & record all http calls in the test subject
 using var httpTest = new HttpTest();

 // arrange
 httpTest.RespondWith("OK", 200);

 // act
 await sut.CreatePersonAsync("Frank", "Reynolds");
 
 // assert
 httpTest.ShouldHaveCalled("http://api.mysite.com/*")
 .WithVerb(HttpMethod.Post)
 .WithContentType("application/json");
}

Get it on NuGet:

PM> Install-Package Flurl.Http

Or get just the stand-alone URL builder without the HTTP features:

PM> Install-Package Flurl

For updates and announcements, follow @FlurlHttp on Twitter.

For detailed documentation, please visit the main site.

Product Versions Compatible and additional computed target framework versions.
.NET net5.0 net5.0 was computed.  net5.0-windows net5.0-windows was computed.  net6.0 net6.0 is compatible.  net6.0-android net6.0-android was computed.  net6.0-ios net6.0-ios was computed.  net6.0-maccatalyst net6.0-maccatalyst was computed.  net6.0-macos net6.0-macos was computed.  net6.0-tvos net6.0-tvos was computed.  net6.0-windows net6.0-windows was computed.  net7.0 net7.0 was computed.  net7.0-android net7.0-android was computed.  net7.0-ios net7.0-ios was computed.  net7.0-maccatalyst net7.0-maccatalyst was computed.  net7.0-macos net7.0-macos was computed.  net7.0-tvos net7.0-tvos was computed.  net7.0-windows net7.0-windows was computed.  net8.0 net8.0 was computed.  net8.0-android net8.0-android was computed.  net8.0-browser net8.0-browser was computed.  net8.0-ios net8.0-ios was computed.  net8.0-maccatalyst net8.0-maccatalyst was computed.  net8.0-macos net8.0-macos was computed.  net8.0-tvos net8.0-tvos was computed.  net8.0-windows net8.0-windows was computed.  net9.0 net9.0 was computed.  net9.0-android net9.0-android was computed.  net9.0-browser net9.0-browser was computed.  net9.0-ios net9.0-ios was computed.  net9.0-maccatalyst net9.0-maccatalyst was computed.  net9.0-macos net9.0-macos was computed.  net9.0-tvos net9.0-tvos was computed.  net9.0-windows net9.0-windows was computed.  net10.0 net10.0 was computed.  net10.0-android net10.0-android was computed.  net10.0-browser net10.0-browser was computed.  net10.0-ios net10.0-ios was computed.  net10.0-maccatalyst net10.0-maccatalyst was computed.  net10.0-macos net10.0-macos was computed.  net10.0-tvos net10.0-tvos was computed.  net10.0-windows net10.0-windows was computed. 
.NET Core netcoreapp2.0 netcoreapp2.0 was computed.  netcoreapp2.1 netcoreapp2.1 was computed.  netcoreapp2.2 netcoreapp2.2 was computed.  netcoreapp3.0 netcoreapp3.0 was computed.  netcoreapp3.1 netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 netstandard2.0 is compatible.  netstandard2.1 netstandard2.1 was computed. 
.NET Framework net461 net461 is compatible.  net462 net462 was computed.  net463 net463 was computed.  net47 net47 was computed.  net471 net471 was computed.  net472 net472 was computed.  net48 net48 was computed.  net481 net481 was computed. 
MonoAndroid monoandroid monoandroid was computed. 
MonoMac monomac monomac was computed. 
MonoTouch monotouch monotouch was computed. 
Tizen tizen40 tizen40 was computed.  tizen60 tizen60 was computed. 
Xamarin.iOS xamarinios xamarinios was computed. 
Xamarin.Mac xamarinmac xamarinmac was computed. 
Xamarin.TVOS xamarintvos xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (18)

Showing the top 5 NuGet packages that depend on Flurl.Http.Signed:

Package Downloads
openstack.net

An OpenStack SDK for Microsoft .NET

Keycloak.Net

C# client for Keycloak

Bitbucket.Net

Package Description

SolrExpress

A simple and lightweight query .NET library for Solr, in a controlled, buildable and fail fast way.

Doxi.APIClient

**Doxi** is advanced software designed for digitally signing documents and streamlining the approval process of various organizational documents, including agreements, contracts, orders, procurement processes, directorate approvals, invoices, and more. The Doxi system enables participants in the signature and confirmation rounds to sign securely and immediately in a digital form from anywhere, using both mobile phones and computers. This Nuget package is an interface to Doxi REST API documented in the link: [https://apidocs.doxi-sign.com](https://apidocs.doxi-sign.com)

GitHub repositories (3)

Showing the top 3 popular GitHub repositories that depend on Flurl.Http.Signed:

Repository Stars
App-vNext/Polly
Polly is a .NET resilience and transient-fault-handling library that allows developers to express policies such as Retry, Circuit Breaker, Timeout, Bulkhead Isolation, and Fallback in a fluent and thread-safe manner. From version 6.0.1, Polly targets .NET Standard 1.1 and 2.0+.
sebastienros/jint
Javascript Interpreter for .NET
lvermeulen/Keycloak.Net
C# client for Keycloak 6.x
Version Downloads Last Updated
4.0.2 212,034 3/16/2024
3.2.4 379,391 6/25/2022
3.2.0 312,925 5/5/2021
3.0.1 72,166 2/25/2021
3.0.0 84,835 11/2/2020
2.4.2 1,268,340 10/2/2020
2.3.2 1,234,615 7/4/2018
2.3.1 65,949 6/30/2018