Activout.RestClient 3.1.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Activout.RestClient --version 3.1.0
                    
NuGet\Install-Package Activout.RestClient -Version 3.1.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="Activout.RestClient" Version="3.1.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Activout.RestClient" Version="3.1.0" />
                    
Directory.Packages.props
<PackageReference Include="Activout.RestClient" />
                    
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 Activout.RestClient --version 3.1.0
                    
#r "nuget: Activout.RestClient, 3.1.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.
#:package Activout.RestClient@3.1.0
                    
#: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=Activout.RestClient&version=3.1.0
                    
Install as a Cake Addin
#tool nuget:?package=Activout.RestClient&version=3.1.0
                    
Install as a Cake Tool

Activout Rest Client

Build Status SonarCloud NuGet Badge

Create a REST(ish) API client only by defining the C# interface you want.

Shamelessly inspired by Rest Client for MicroProfile.

Rationale

The Activout Rest Client provides a type-safe approach to invoke RESTful services over HTTP. As much as possible the Rest Client attempts to use .NET Core MVC APIs for consistency and easier re-use.

Example

Here is an example - let’s say that you want to use a movie review service. The remote service might provide APIs to view users' reviews and allow you to post and modify your own reviews. You might start with an interface to represent the remote service like this:

[Path("movies")]
[ErrorResponse(typeof(ErrorResponse))]
[Accept("application/json")]
[ContentType("application/json")]
public interface IMovieReviewService
{
    Task<List<Movie>> GetAllMovies();

    Task<List<Movie>> QueryMoviesByDate(
        [QueryParam] DateTime begin,
        [QueryParam] DateTime end);

    [Get("/{movieId}/reviews")]
    Task<IEnumerable<Review>> GetAllReviews(string movieId);

    [Get("/{movieId}/reviews/{reviewId}")]
    Task<Review> GetReview(string movieId, string reviewId);

    [Post("/{movieId}/reviews")]
    Task<Review> SubmitReview(string movieId, Review review);

    [Put("/{movieId}/reviews/{reviewId}")]
    Task<Review> UpdateReview(string movieId, string reviewId, Review review);

    [Post("/import.csv")]
    [ContentType("text/csv")]
    Task Import(string csv);
}

Now we can use this interface as a means to invoke the actual remote review service like this:

var restClientFactory = Services.CreateRestClientFactory();
var movieReviewService = restClientFactory
            .CreateBuilder()
            .With(_httpClient)
            .BaseUri(new Uri("http://localhost:9080/movieReviewService"))
            .Build<IMovieReviewService>();

Review review = new Review(stars: 3, "This was a delightful comedy, but not terribly realistic.");
await movieReviewService.SubmitReview(movieId, review);

This allows for a much more natural coding style, and the underlying implementation handles the communication between the client and service - it makes the HTTP connection, serializes the Review object to JSON/etc. so that the remote service can process it.

External projects using Activout.RestClient

  • Activout.FuelPrice A console application that reads from Twitter of a specific chain of petrol stations to fetch my local fuel price.
  • Your project here?

Usage notes

  • Built for ASP.NET Core 3.1
  • Both synchronous and asynchronous calls are supported. Asynchronous is recommended.
  • Additional serializers and deserializers can be added at will.
  • Support for custom error objects via [ErrorResponse] attribute. These will be included in a RestClientException that is thrown if the API call fails.

Usage with dependency injection through IServiceCollection

public static IServiceCollection AddRestClient(this IServiceCollection self)
{
  self.TryAddTransient<IDuckTyping, DuckTyping>();
  self.TryAddTransient<IParamConverterManager, ParamConverterManager>();
  self.TryAddTransient<IRestClientFactory, RestClientFactory>();
  self.TryAddTransient<ITaskConverterFactory, TaskConverter2Factory>();
  return self;
}

Breaking changes in version 3

  • Changed IRestClientBuilder.HttpClient() to a new overload of IRestClientBuilder.With()
  • Removed dependency on Microsoft.AspNetCore.Mvc.Core
    • Removed AddRestClient extension method on IServiceCollection, see Usage notes above
    • This means we now use our own attributes instead of those in Microsoft.AspNetCore.Mvc namespace:
      • [HttpGet][Get]
      • [HttpPost][Post]
      • [HttpPut][Put]
      • [HttpDelete][Delete]
      • [InterfaceRoute][Path]
      • [Route][Path]
      • [RouteParam][PathParam]
      • [InterfaceConsumes] and [Consumes][Accept] for setting Accept HTTP header or [ContentType] for POST/PUT data
      • Other attributes keep the same name but live in the Activout.RestClient namespace
    • This also meant replacing MediaTypeCollection and MediaType from Microsoft.AspNetCore.Mvc.Formatters namespace:
      • We have our own MediaType class now, which is just a value object
      • IDeserializer has a new method CanDeserialize and the SupportedMediaTypes property is removed. It also has a property
      • ISerializer has a new method CanSerialize and the SupportedMediaTypes property is removed
      • ISerializationManager method signatures changed accordingly

TODO

  • Support for cookie parameters, if someone need them
  • Maybe extract JSON serialization/deserialization to its own project so that Newtonsoft.Json dependency becomes optional

Similar projects

I deliberately implemented my project without even searching for C# projects using the same concept, but afterwards I have found these:

Collaborate

This project is still under development - participation welcome!

  • Activout.DatabaseClient - Create a database client only by defining methods on an interface and annotate them with SQL statements. Uses Dapper for object mapping.

About Activout

Activout AB is a software company in Ronneby, Sweden.

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 was computed.  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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp3.1 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on Activout.RestClient:

Package Downloads
Activout.RestClient.Xml

XML Support for Activout.RestClient.

Activout.RestClient.Newtonsoft.Json

Newtonsoft.Json Support for Activout.RestClient.

Activout.RestClient.Json

System.Text.Json Support for Activout.RestClient.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
5.0.0-beta1 166 9/22/2025
4.0.1 541 11/26/2024
4.0.0 131 11/26/2024
3.1.0 692 5/10/2022
3.0.5-beta 458 12/11/2020
3.0.4-beta2 432 12/7/2020
3.0.3 1,225 12/1/2020
2.4.0 726 2/5/2020
2.3.0 759 10/27/2019
2.0.0 834 4/26/2019
1.6.0 1,141 9/14/2018
1.5.0 1,072 9/13/2018
1.4.0 1,085 9/11/2018
1.3.0 1,078 9/11/2018
1.2.0 1,166 8/16/2018
1.1.0 1,222 7/21/2018
1.0.2 1,223 7/21/2018