FsHttp.FSharpData
9.0.0
See the version list below for details.
dotnet add package FsHttp.FSharpData --version 9.0.0
NuGet\Install-Package FsHttp.FSharpData -Version 9.0.0
<PackageReference Include="FsHttp.FSharpData" Version="9.0.0" />
paket add FsHttp.FSharpData --version 9.0.0
#r "nuget: FsHttp.FSharpData, 9.0.0"
// Install FsHttp.FSharpData as a Cake Addin #addin nuget:?package=FsHttp.FSharpData&version=9.0.0 // Install FsHttp.FSharpData as a Cake Tool #tool nuget:?package=FsHttp.FSharpData&version=9.0.0
FsHttp
FsHttp is a .Net HTTP client library For C# and F#. It aims for describing and executing HTTP requests in convenient ways that can be used in production and interactive environments.
FsHttp is authored by @ronaldschlenker. Feel free to leave a message.
Documentation
Please see FsHttp Documentation site for a detailed documentation.
A Simple Example
An example in F#:
#r "nuget: FsHttp"
open FsHttp
http {
POST "https://reqres.in/api/users"
CacheControl "no-cache"
body
json """
{
"name": "morpheus",
"job": "leader"
}
"""
}
|> Request.send
An example in C#:
#r "nuget: FsHttp"
using FsHttp.CSharp;
await "https://reqres.in/api/users".Post()
.CacheControl("no-cache")
.Body()
.Json(@"
{
""name"": ""morpheus"",
""job"": ""leader""
}
")
.SendAsync();
Migrating to new versions
For different upgrade paths, please read the Migrations section in the docu.
Building
You need to have the latest .Net 5 SDK installed.
Building binaries, publish, and test
There is a F# script that can be used to perform several build tasks from command line. It can be executed in this way:
PS> dotnet fsi .\build.fsx [task]
Common tasks are:
- build
- test
- publish
Building the documentation
The documentation in ./docs
is auto-generated from the files in ./src/Docu
. In order to build them, run:
PS> .\docu.ps1
Credits
Parts of the code is taken from the HTTP utilities of FSharp.Data.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 is compatible. net5.0-windows was computed. 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. |
-
net5.0
- FSharp.Core (>= 6.0.2)
- FSharp.Data (>= 4.0.1)
- FsHttp (>= 9.0.0)
-
net6.0
- FSharp.Core (>= 6.0.2)
- FSharp.Data (>= 4.0.1)
- FsHttp (>= 9.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 | Downloads | Last updated |
---|---|---|
14.5.1 | 2,854 | 8/9/2024 |
14.5.0 | 1,486 | 3/5/2024 |
14.4.2 | 115 | 3/5/2024 |
14.4.1 | 2,280 | 2/5/2024 |
14.4.0 | 314 | 1/7/2024 |
14.2.0 | 126 | 1/5/2024 |
14.1.0 | 139 | 1/3/2024 |
14.0.0 | 150 | 1/2/2024 |
13.3.0 | 141 | 12/28/2023 |
13.2.0 | 151 | 12/28/2023 |
12.2.0-preview01 | 143 | 12/24/2023 |
12.1.0 | 226 | 11/27/2023 |
12.0.0 | 205 | 10/31/2023 |
11.0.0 | 709 | 8/5/2023 |
11.0.0-preview01 | 159 | 3/25/2023 |
10.0.0 | 3,467 | 11/25/2022 |
10.0.0-preview3 | 150 | 11/23/2022 |
10.0.0-preview2 | 161 | 11/12/2022 |
10.0.0-preview1 | 165 | 11/12/2022 |
9.1.2 | 2,116 | 6/5/2022 |
9.1.1 | 699 | 4/24/2022 |
9.1.0 | 416 | 4/19/2022 |
9.0.6 | 445 | 4/19/2022 |
9.0.5 | 438 | 4/14/2022 |
9.0.4 | 450 | 4/8/2022 |
9.0.3 | 453 | 4/8/2022 |
9.0.2 | 429 | 4/6/2022 |
9.0.1 | 428 | 4/5/2022 |
9.0.0 | 430 | 4/5/2022 |
v7.0.0
- #92: `expect` and `assert` pass through the original response instead of unit.
v8.0.0
- #93 (thanks @drhumlen): Changed content type 'text/json' to 'application/json'.
- Http modules are always AutoOpen in both Dsl and DslCE
- No extra modules for builder methods
v8.0.1
- #89: No more blocking requests using net5 with FSI
v9.0.0
- Redefined builders (see README.md)
- Many breaking changes (see "Migrations" sections in the docu)