joydip_kanjilal
Contributor

How to consume an ASP.NET Core Web API using RestSharp

how-to
Dec 16, 20196 mins
Microsoft .NETSoftware Development

Take advantage of the simple and easy RestSharp library to consume RESTful services in ASP.NET Core

Handshake amid abstract connections and data.
Credit: Metamorworks / Getty Images

REST is an acronym for Representational State Transfer, an architectural style that has become extremely popular over the past few years. A RESTful API is one that it is built in accordance with the principles and guidelines of REST. RESTful APIs usually return plain text, JSON, or XML as a response.

RestSharp is an open source HTTP client library that makes it easy to consume RESTful services. RestSharp provides a developer friendly interface to work with RESTful services while abstracting the internal intricacies of working with HTTP requests. RestSharp supports both synchronous and asynchronous requests.

This article presents a discussion of how we can work with RestSharp to consume services built using ASP.NET Core.

To work with the code examples in this article, you should have Visual Studio 2019 installed in your system. If you don’t already have a copy, you can download Visual Studio 2019 here

Create an ASP.NET Core API project

First off, let’s create an ASP.NET Core project in Visual Studio. Assuming Visual Studio 2019 is installed in your system, follow the steps outlined below to create a new ASP.Net Core project in Visual Studio.

  1. Launch the Visual Studio IDE.
  2. Click on “Create new project.”
  3. In the “Create new project” window, select “ASP.NET Core Web Application” from the list of templates displayed.
  4. Click Next.
  5. In the “Configure your new project” window, specify the name and location for the new project.
  6. Click Create.
  7. In the “Create New ASP.Net Core Web Application” window, select .NET Core as the runtime and ASP.NET Core 2.2 (or later) from the drop-down list at the top. I’ll be using ASP.NET Core 3.0 here.
  8. Select “API” as the project template to create a new ASP.NET Core API application. 
  9. Ensure that the check boxes “Enable Docker Support” and “Configure for HTTPS” are unchecked as we won’t be using those features here.
  10. Ensure that Authentication is set as “No Authentication” as we won’t be using authentication either.
  11. Click Create. 

Following these steps will create a new ASP.NET Core API project in Visual Studio. Next, select the Controllers solution folder in the Solution Explorer window, click “Add -> Controller…,” and select “API Controller with Read/Write Actions.” Name this new controller DefaultController.

We’ll use this project in the subsequent sections of this article.

Implement the DefaultController in ASP.NET Core API

Open the DefaultController.cs file and replace the code in it with the one given below:

using Microsoft.AspNetCore.Mvc;
using System.Collections.Generic;
namespace RESTAPIDemo.Controllers
{
    [Route("api/[controller]")]
    [ApiController]
    public class DefaultController : ControllerBase
    {
        private readonly Dictionary<int, string> authors = new Dictionary<int, string>();
        public DefaultController()
        {
            authors.Add(1, "Joydip Kanjilal");
            authors.Add(2, "Steve Smith");
            authors.Add(3, "Michele Smith");
        }
        [HttpGet]
        public List<string> Get()
        {
            List<string> lstAuthors = new List<string>();
            foreach (KeyValuePair<int,string> keyValuePair in authors)
                lstAuthors.Add(keyValuePair.Value);
            return lstAuthors;
        }
        [HttpGet("{id}", Name = "Get")]
        public string Get(int id)
        {
            return authors[id];
        }
        [HttpPost]
        public void Post([FromBody] string value)
        {
            authors.Add(4, value);
        }
        [HttpPut("{id}")]
        public void Put(int id, [FromBody] string value)
        {
            authors[id] = value;
        }
        [HttpDelete("{id}")]
        public void Delete(int id)
        {
            authors.Remove(id);
        }
    }
}

Refer to the DefaultController class above. Note that this class contains action methods corresponding to each of the HTTP verbs GET, POST, PUT, and DELETE. For the sake of simplicity, we’re using a Dictionary here to store and retrieve data. You can test this API using your web browser or tools like Postman or Fiddler. Note that I’ve hardcoded the ID in the HttpPost method just for simplicity. You should implement it in your own way to generate an unique key.

So far so good. In the sections that follow we’ll learn how to work with RestSharp to consume the API we’ve built.

Create the client to consume the API

We’ll be using a console application as the client to consume the API we built earlier. Assuming Visual Studio 2019 is installed in your system, follow the steps outlined below to create a new .NET Core Console Application project in Visual Studio.

  1. Launch the Visual Studio IDE.
  2. Click on “Create new project.”
  3. In the “Create new project” window, select “Console App (.NET Core)” from the list of templates displayed.
  4. Click Next.
  5. In the “Configure your new project” window shown next, specify the name and location for the new project.
  6. Click Create.

That’s all we have to do to create a new .NET Core Console Application project.

Install the RestSharp NuGet package

To work with RestSharp, you should install the RestSharp package from NuGet. You can do this either via the NuGet Package Manager inside the Visual Studio 2019 IDE, or by executing the following command in the NuGet Package Manager Console:

Install-Package RestSharp

Consume the ASP.NET Core API using RestSharp

Once you’ve installed RestSharp into your project, you can start using it. First, you will need to create an instance of RestClient. The following code snippet shows how you can instantiate and initialize the RestClient class. Note that we’re passing the base URL to the constructor of the RestClient class.

RestClient client = new RestClient("http://localhost:58179/api/");

Next, you should create an instance of the RestRequest class by passing the resource name and the method to be used. The following code snippet shows how this can be achieved.

RestRequest request = new RestRequest("Default", Method.GET);

Lastly, you need to execute the request, deserialize the response, and assign it to an object as appropriate as shown in the code snippet given below.

IRestResponse<List<string>> response = client.Execute<List<string>>(request);

The following is the complete code listing for your reference.

using RestSharp;
using System;
using System.Collections.Generic;
namespace RESTSharpClientDemo
{
    class Program
    {
        private static RestClient client = new
        RestClient("http://localhost:58179/api/");
        static void Main(string[] args)
        {
            RestRequest request = new RestRequest("Default",
            Method.GET);
            IRestResponse<List<string>> response =
            client.Execute<List<string>>(request);
            Console.ReadKey();
        }
    }
}

To make a POST request using RestSharp, you can use the following code:

RestRequest request = new RestRequest("Default", Method.POST);
request.AddJsonBody("Robert Michael");
var response = client.Execute(request);

RestSharp is available across several .NET platforms, which is one of the reasons why it is so popular. The automatic deserialization capability of RestSharp is also noteworthy. You can learn more about RestSharp on GitHub

joydip_kanjilal
Contributor

Joydip Kanjilal is a Microsoft Most Valuable Professional (MVP) in ASP.NET, as well as a speaker and the author of several books and articles. He received the prestigious MVP award for 2007, 2008, 2009, 2010, 2011, and 2012.

He has more than 20 years of experience in IT, with more than 16 years in Microsoft .Net and related technologies. He has been selected as MSDN Featured Developer of the Fortnight (MSDN) and as Community Credit Winner several times.

He is the author of eight books and more than 500 articles. Many of his articles have been featured at Microsoft’s Official Site on ASP.Net.

He was a speaker at the Spark IT 2010 event and at the Dr. Dobb’s Conference 2014 in Bangalore. He has also worked as a judge for the Jolt Awards at Dr. Dobb's Journal. He is a regular speaker at the SSWUG Virtual Conference, which is held twice each year.

More from this author