VOOZH about

URL: https://www.nuget.org/packages/flurl.http/

⇱ NuGet Gallery | Flurl.Http 4.0.2




👁 Image
Flurl.Http 4.0.2

Prefix Reserved
dotnet add package Flurl.Http --version 4.0.2
 
 
NuGet\Install-Package Flurl.Http -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" 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" Version="4.0.2" />
 
Directory.Packages.props
<PackageReference Include="Flurl.Http" />
 
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 --version 4.0.2
 
 
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Flurl.Http, 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@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&version=4.0.2
 
Install as a Cake Addin
#tool nuget:?package=Flurl.Http&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 (799)

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

Package Downloads
Reo.Core.Hosting

Package Description

Flurl.Http.Newtonsoft

A Newtonsoft-based JSON serializer for Flurl.Http 4.0 and above.

Reo.Core.IdentityModel

Package Description

Reo.Core.AutoHistory

Package Description

Reo.Core.Database

Package Description

GitHub repositories (64)

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

Repository Stars
Kareadita/Kavita
Kavita is a fast, feature rich, cross platform reading server. Built with the goal of being a full solution for all your reading needs. Setup your own server and share your reading collection with your friends and family.
Ponderfly/GoogleTranslateIpCheck
扫描国内可用的谷歌翻译IP
Megabit/Blazorise
Blazorise is a component library built on top of Blazor with support for CSS frameworks like Bootstrap, Tailwind, Bulma, AntDesign, and Material.
Azure-Samples/cognitive-services-speech-sdk
Sample code for the Microsoft Cognitive Services Speech SDK
ONLYOFFICE/CommunityServer
Free open source office suite with business productivity tools: document and project management, CRM, mail aggregator.
ArduPilot/MissionPlanner
Mission Planner Ground Control Station for ArduPilot (c# .net)
fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat
可能是全网最完整的 C# 版微信 SDK,封装全部已知的微信 OpenAPI,包含微信公众平台(订阅号+服务号+小程序+小游戏+小商店+视频号)、微信开放平台、微信商户平台(微信支付+微企付)、企业微信、微信广告平台、微信智能对话开放平台等模块,可跨平台。持续随官方更新,欢迎 Star/Fork/PR。QQ 交流群 875580418【满】、930461548【满】、611974621。
CoreUnion/CoreShop
基于 Asp.Net Core 9.0、Uni-App开发,支持可视化布局的小程序商城系统,前后端分离,支持分布式部署,跨平台运行,拥有分销、代理、团购、拼团、秒杀、直播、优惠券、自定义表单等众多营销功能,拥有完整SKU、下单、售后、物流流程。支持一套代码编译发布微信小程序版、H5版、Android版、iOS版、支付宝小程序版、字节跳动小程序版、QQ小程序版等共10个平台。
micahmo/WgServerforWindows
Wg Server for Windows (WS4W) is a desktop application that allows running and managing a WireGuard server endpoint on Windows
grandnode/grandnode2
E-commerce platform built with ASP.NET Core using MongoDB for NoSQL storage
LightCountry/TokenPay
✅一款同时支持动态和静态收款地址收取TRX、USDT-TRC20、ETH系列区块链所有代币的支付解决方案!✅A payment solution that supports both dynamic and static payee addresses to receive TRX, USDT-TRC20, all tokens of ETH series blockchain!
Decimation/SmartImage
Reverse image search tool (SauceNao, IQDB, Ascii2D, trace.moe, and more)
HenJigg/wpf-abp
Cross-platform mobile project and WPF client based on ABP framework Xamarin.Forms
stratisproject/StratisBitcoinFullNode
Bitcoin full node in C#
duyanming/Viper
Viper 是一个基于Anno微服务引擎开发的Dashboard示例项目。Anno 底层通讯采用 grpc、thrift。自带服务发现、调用链追踪、Cron 调度、限流、事件总线等等
lisongkun/HyggeImaotai
i茅台app接口自动化csharp wpf实现,挂机windows服务器每日自动预约, (╯°□°)╯︵ ┻━┻ 预约启动!
PhantomGamers/SFP
This utility is designed to allow you to apply skins to the modern Steam client
lofcz/LLMTornado
The .NET library to build AI agents with 30+ built-in connectors.
vknet/vk
Vkontakte API for .NET
yoshiask/FluentStore
A unifying frontend for Windows app stores and package managers
Version Downloads Last Updated
4.0.2 21,940,785 1/17/2024
4.0.1 2,999,921 1/10/2024
4.0.0 653,759 12/14/2023
4.0.0-pre7 5,291 12/8/2023
4.0.0-pre6 60,079 11/3/2023
4.0.0-pre5 12,774 10/22/2023
4.0.0-pre4 12,024 10/9/2023
4.0.0-pre3 387,211 12/20/2022
4.0.0-pre2 269,537 6/20/2022
4.0.0-pre1 63,444 6/5/2022
3.2.4 29,020,360 5/20/2022
3.2.4-pre2 2,084 5/18/2022
3.2.4-pre1 993 5/18/2022
3.2.3 1,589,454 4/25/2022
3.2.2 4,268,672 1/27/2022
3.2.1 380,557 1/22/2022
3.2.0 15,952,767 5/4/2021
3.0.1 5,184,250 12/14/2020
3.0.0 1,594,329 11/1/2020
3.0.0-pre6 21,950 10/24/2020
Loading failed