FsHttp.NewtonsoftJson 14.5.0

dotnet add package FsHttp.NewtonsoftJson --version 14.5.0
NuGet\Install-Package FsHttp.NewtonsoftJson -Version 14.5.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="FsHttp.NewtonsoftJson" Version="14.5.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add FsHttp.NewtonsoftJson --version 14.5.0
#r "nuget: FsHttp.NewtonsoftJson, 14.5.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.
// Install FsHttp.NewtonsoftJson as a Cake Addin
#addin nuget:?package=FsHttp.NewtonsoftJson&version=14.5.0

// Install FsHttp.NewtonsoftJson as a Cake Tool
#tool nuget:?package=FsHttp.NewtonsoftJson&version=14.5.0

<p align="center"> <img src='https://raw.githubusercontent.com/fsprojects/FsHttp/master/docs/img/logo_big.png' alt='logo' width='300' /> </p>

FsHttp ("Full Stack HTTP") is a "hackable HTTP client". It's purposes are:

  • Use it as a replacement for .http files, VSCode's REST client, Postman, and other tools as an interactive and programmable playground for HTTP requests.
  • Usable as a production-ready HTTP client for applications powered by .Net (C#, VB, F#).

👍Postman? ❤️ FsHttp!

https://youtu.be/F508wQu7ET0

The design principle behind FsHttp is to specify HTTP requests in a most convenient and readable way, while still being able to access the underlying Http representations for covering unusual cases. It's the best of both worlds: Convenience and Flexibility.

FsHttp is developed and maintained by @SchlenkR and @dawedawe. Feel free to leave us a message.

NuGet Badge build status

A Simple Example

An example in F#:

#r "nuget: FsHttp"

open FsHttp

http {
    POST "https://reqres.in/api/users"
    CacheControl "no-cache"
    body
    jsonSerialize
        {|
            name = "morpheus"
            job = "leader"
        |}
}
|> Request.send

An example in C#:

#r "nuget: FsHttp"

using FsHttp;

await Http
    .Post("https://reqres.in/api/users")
    .CacheControl("no-cache")
    .Body()
    .JsonSerialize(new
        {
            name = "morpheus",
            job = "leader"
        }
    )
    .SendAsync();

Documentation

Release Notes / Migrating to new versions

GitHub

Please see FsHttp on GitHub.

Building

.Net SDK:

You need to have the latest .Net SDK installed, which is specified in ./global.json.

Build Tasks

There is a F# build script (./build.fsx) that can be used to perform several build tasks from command line.

For common tasks, there are powershell files located in the repo root:

  • ./test.ps1: Runs all tests (sources in ./src/Tests).
    • You can pass args to this task. E.g. for executing only some tests: ./test.ps1 --filter Name~'Response Decompression'
  • ./docu.ps1: Rebuilds the FsHttp documentation site (sources in ./src/docs).
  • ./docu-watch.ps1: Run it if you are working on the documentation sources, and want to see the result in a browser.
  • ./publish.ps1: Publishes all packages (FsHttp and it's integration packages for Newtonsoft and FSharp.Data) to NuGet.
    • Always have a look at ./src/Directory.Build.props and keep the file up-to-date.

Credits

  • Parts of the code is taken from the HTTP utilities of FSharp.Data.
  • Credits to all critics, supporters, contributors, promoters, users, and friends.
Product 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. 
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

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
14.5.0 86 3/5/2024
14.4.2 68 3/5/2024
14.4.1 100 2/5/2024
14.4.0 157 1/7/2024
14.2.0 103 1/5/2024
14.1.0 108 1/3/2024
14.0.0 100 1/2/2024
13.3.0 111 12/28/2023
13.2.0 106 12/28/2023
12.2.0-preview01 95 12/24/2023
12.1.0 170 11/27/2023
12.0.0 146 10/31/2023
11.0.0 181 8/5/2023
11.0.0-preview01 142 3/25/2023
10.0.0 1,538 11/25/2022
10.0.0-preview3 115 11/23/2022
10.0.0-preview2 131 11/12/2022
10.0.0-preview1 129 11/12/2022
9.1.2 1,706 6/5/2022
9.1.1 642 4/24/2022
9.1.0 404 4/19/2022
9.0.6 403 4/19/2022
9.0.5 421 4/14/2022

14.5.0
     - Added 'useBaseUrl' and 'transformUrl' to Config for better composability
     - Fixed some extension methods

     14.4.2
     - Thanks @bartelink
       Pinned FSharp.Core to 5.0.2 in all library projects
       Removed net7.0, net8.0 TFM-specific builds

     14.4.1
     - Fixed missing explicit dependency on FSharp.Core

     14.4.0
     - Fixed pre-configured requests

     14.3.0
     - Added `GetList` JsonElement extension
     
     14.2.0
     - (Breaking change) Separated Config and PrintHint (...and many more things in these domains)

     14.1.0
     - (Breaking change) Renamed `Extensions.To...Enumerable` to `Extensions.To...Seq`
     - Added `toJsonList...` overloads

     14.0.0
     - (Breaking change) Renamed types in Domain:
       BodyContent -> SinglepartContent
       RequestContent -> BodyContent
       FsHttpUrl -> FsHttpTarget
     - (Breaking change) FsHttpUrl (now FsHttpTarget) and Header restructured: method, address and queryParams are now part of the FsHttpTarget type.
     - Added `headerTransformers` to Config for better composability

     13.3.0
     - (Breaking change) All `Response._TAsync` functions (task based) in F# require a CancellationToken now.
     - (Breaking change) Extension methods rework
     - (Breaking change) There's no more StartingContext, which means:
       we give up a little bit of safety here, for the sake of pre-configuring HTTP requests
       without specifying the URL. This is a trade-off we are willing to take.

     12.2.0
     - added HttpMethods for better composability

     12.1.0
     - net8.0

     12.0.0
     - #137 / #102: Change the type for FsHttpUrl.additionalQueryParams from obj to string
     - Removed (auto opened) Async.await and Task.map/await
     - Moved (auto opened) Async.map to FsHttp.Helper.Async.map

     11.1.0
     - #130 / #105: Add method for user-supplied cancellation token

     11.0.0
     - #121 (Breaking change): Turning off debug logs in FSI (breaking change in signature / namespace)
     - #124: Support Repeating Query Parameters (thanks @DaveJohnson8080)
     - #106 (Breaking change): Allow filename metadata with other "parts" (thanks @dawedawe)
     - Breaking change: ContentTypeForPart custom operations should come after part definition
     - #104 (Breaking change): Automatic GZip response decompression per Default
     - Other breaking changes:
       - Removed `ContentTypeWithEncoding` and used optional `charset` parameter in `ContentType` overloads.
       - Renamed `byteArray` to `binary` in Dsl, DslCE and CSharp.
       - Caution (!!): Renamed `stringPart` to `textPart` and changed argument order for `name` and `value` in Dsl and DslCE.
       - Restructured types in Domain
       - `Helper` is a module instead of a namespace, and some things were moved.
       - All transformers in config are a list of transformers instead of a single item.
       - Removed `setHttpClient`. Please use `setHttpClientFactory` instead.
       - `setHttpClientFactory` takes a `Config` as input argument.

     -----------------------------
     -- Old release notes below --
     -----------------------------
     
     7.0.0
     - #92: `expect` and `assert` pass through the original response instead of unit.

     8.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.

     8.0.1
     - #89: No more blocking requests using net5 with FSI.

     9.0.0 / 9.0.1
     - Redefined builders (see README.md).
     - Many breaking changes (see "Migrations" sections in the docu).

     9.0.2
     - Added JSON toArray functions
     - Fixed #99: Response.saveFile should create the directory if not present.

     9.0.3
     - Supporting netstandard2.1 again.

     9.0.4
     - Referenced lowest possible FSharp.Core and other referenced packages version.

     9.0.5
     - Support for netstandard2.0.
     - New 'FsHttp.NewtonsoftJson' integration package.
     - More JSON functions and defaults config.

     9.0.6
     - #100 - Removed FSI print messages.

     9.1.0
     - Fixed naming inconsistency for 'Response.deserialize...' functions.
     - More C# JSON functions.

     9.1.1
     - Fix: Using GlobalConfig.Json.defaultJsonSerializerOptions as default for jsonSerialize.

     9.1.2
     - Fixed #103: FSI response printing and initialization doesn't work out of the box anymore.

     10.0.0
     - .Net 7 support (thank you @Samuel-Dufour)
     - Breaking change: Corrected typo "guessMineTypeFromPath" -> "guessMimeTypeFromPath"
     - Breaking change: Module 'Helper', 'HelperInternal' and 'HelperAutos' refactored
     - #115: Remove print messages when downloading streams
     - Printing: Separate print functions for response and request via Request.print and Response.print
     - Printing: Default request (IToRequest) printing in FSI
     - Removed net5.0 targets in all projects
     - PrintHint.printDebugMessages: Moved to FsHttp.Helper.Fsi.logDebugMessages as a global switch
     - #113 - Config.timeoutInSeconds bug

     10.1.0
     - #117: Escape string for query params values (by @maciej-izak - thank you)
     (!!) This can be seen as breaking change.
     - #112: Allow to add (multiple) headers (by @Samuel-Dufour - thank you)