Flurl.Http 0.7.0

dotnet add package Flurl.Http --version 0.7.0
                    
NuGet\Install-Package Flurl.Http -Version 0.7.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="Flurl.Http" Version="0.7.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Flurl.Http" Version="0.7.0" />
                    
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 0.7.0
                    
#r "nuget: Flurl.Http, 0.7.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=Flurl.Http&version=0.7.0
                    
Install Flurl.Http as a Cake Addin
#tool nuget:?package=Flurl.Http&version=0.7.0
                    
Install Flurl.Http as a Cake Tool

A fluent, portable, testable HTTP client library that extends Flurl's URL builder chain.

Product Compatible and additional computed target framework versions.
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 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 (56)

Showing the top 5 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.
Version Downloads Last updated
0.7.0 4,393 9/20/2015
0.6.4 1,877 8/18/2015
0.6.3 3,341 7/19/2015
0.6.2 2,143 6/25/2015
0.6.1 1,698 6/11/2015
0.6.0 18,752 3/28/2015
0.5.3 279 3/19/2015
0.5.2 138 3/17/2015
0.5.1 142 3/16/2015
0.5.0 754 2/4/2015
0.4.2 190 2/2/2015
0.4.1 332 1/17/2015
0.4.0 360 12/16/2014
0.4.0-pre2 208 12/15/2014
0.4.0-pre 92 12/14/2014
0.3.0-pre 89 12/10/2014
0.2.5 263 12/8/2014
0.2.4 3,491 8/29/2014
0.2.3 407 7/24/2014
0.2.2 197 7/8/2014
0.2.1 203 6/19/2014
0.2.0 172 6/11/2014
0.2.0-pre 101 6/5/2014
0.1.3 126 5/31/2014
0.1.2 158 5/12/2014
0.1.1 159 5/5/2014
0.1.0 119 5/4/2014

0.7.0 - BREAKING CHANGES: https://github.com/tmenier/Flurl/wiki/Release-Notes
0.6.4 - nuspec fix for Xamarin/non-PCL, AllowHttpStatus overloads with HttpStatusCode enum.
0.6.3 - Updated Flurl dependency to 1.0.9.
0.6.2 - Respect Json.NET's JsonConvert.DefaultSettings
0.6.1 - Fixed possibly dictionary lookup bug (github #34).
0.6.0 - Added support for cancellation tokens, PATCH, string request bodies.
0.5.3 - Updated Flurl dependency to 1.0.7.
0.5.2 - Allowed HTTP status at the individual client/call level, i.e. url.AllowHttpStatus("3xx"), url.AllowAnyHttpStatus()
0.5.1 - Configure which HTTP statuses won't throw exceptions, i.e. FlurlHttp.Configure(c => c.AllowedHttpStatusRange = "100-299,4xx");
0.5.0 - Added deserialization helpers for error responses (FlurlHttpException.FlurlHttpException.GetResponseJson, etc).
0.4.2 - Updated Flurl dependency to 1.0.6.
0.4.1 - GitHub #25 - some exceptions not triggering global OnError.
0.4.0 - Client lifetime management - see http://bit.ly/1zqmuLA.
0.3.0 - Added support for sending cookies (WithCookie/WithCookies), including breaking change to IHttpClientFactory.
0.2.5 - Added hook to create HttpClientHandler from custom factory, updated Flurl dependency.
0.2.4 - Updated Flurl dependency for PCL to 1.0.2.
0.2.3 - New properties added to HttpCall: Url, Completed, Succeeded, HttpStatus.
0.2.2 - Updated Flurl dependency for PCL to 1.0.1.
0.2.1 - Added support for getting streams and byte arrays.
0.2.0 - Added .NET 4.5 specific version with fewer dependencies.
0.1.3 - Added support for HEAD requests via HeadAsync (thanks to @benb1n).