Skip to content
Go back

A simple lightweight HTTP Request Library

Published: at 08:43 AM

Unirest is a set of lightweight HTTP libraries available in multiple languages. This is a port of the Java library to .NET.

Basic POST request example:

HttpResponse<MyClass> jsonResponse = Unirest.post("http://httpbin.org/post")
  .header("accept", "application/json")
  .field("parameter", "value")
  .field("foo", "bar")
  .asJson<MyClass>();

Async, file uploads, custom entity bodies and multiple method types (get, post, put, patch, delete) are supported.

via Unirest for .NET - Simplified, lightweight HTTP Request Library.


Suggest Changes

Previous Post
Fix Internet Explorer prompts to save JSON response when uploading files
Next Post
How I setup my Digital Ocean droplet with ZPanel and configured the DKIM and SPF records