Click here to Skip to main content
15,881,882 members
Articles / Programming Languages / C# 3.5
Tip/Trick

How to make REST requests with C#

Rate me:
Please Sign up or sign in to vote.
4.90/5 (55 votes)
21 Nov 2012CPOL2 min read 555.3K   93   30
A reusable component for makeing REST service requests using C#

Introduction

REST web services have become mainstream and it is important as a developer to know how to communicate with the onslaught of services built using this architecture which now flood our industry. In this article I will provide you with a module I developed for making web request to REST services using C# and give you some details on how the code works.

Explaining what REST services are and how they work is beyond the scope of this modest article. However, if you are unfamiliar with the basic concepts I recommend you ready this article and get up to speed.

Background

This class I'm going to share with you is one I developed for simplifying RESTful service calls using C#. It has served me well over the years and is in production use all over the place. Hopfully it saves you some time and adds something usful to your arsenal.

Using the code

Using the code is pretty straightforward. You just create an instance of the RestClient class, assign the value of your endpoint (the endpoint is the URL of the REST service you are attempting to call), and call the MakeRequest method.

Basic call

C#
string endPoint = @"http:\\myRestService.com\api\";
var client = new RestClient(endPoint);
var json = client.MakeRequest();

If you want to append parameters you can pass them into the make request method like so.

C#
var json = client.MakeRequest("?param=0");

To set the HttpVerb (i.e. GET, POST, PUT, or DELETE), simply use the provided HttpVerb enumeration. Here is an expample of making a POST request:

C#
var client = new RestClient(endpoint: endPoint, 
                            method: HttpVerb.POST, 
                            postData: "{'someValueToPost': 'The Value being Posted'}");

You can also just assign the values in line if you want:

C#
var client = new RestClient();
client.EndPoint = @"http:\\myRestService.com\api\"; ;
client.Method = HttpVerb.POST;
client.PostData = "{postData: value}";
var json = client.MakeRequest();

The Code

C#
using System;
using System.IO;
using System.Net;
using System.Text;

public enum HttpVerb
{
    GET,
    POST,
    PUT,
    DELETE
}

namespace HttpUtils
{
  public class RestClient
  {
    public string EndPoint { get; set; }
    public HttpVerb Method { get; set; }
    public string ContentType { get; set; }
    public string PostData { get; set; }

    public RestClient()
    {
      EndPoint = "";
      Method = HttpVerb.GET;
      ContentType = "text/xml";
      PostData = "";
    }
    public RestClient(string endpoint)
    {
      EndPoint = endpoint;
      Method = HttpVerb.GET;
      ContentType = "text/xml";
      PostData = "";
    }
    public RestClient(string endpoint, HttpVerb method)
    {
      EndPoint = endpoint;
      Method = method;
      ContentType = "text/xml";
      PostData = "";
    }

    public RestClient(string endpoint, HttpVerb method, string postData)
    {
      EndPoint = endpoint;
      Method = method;
      ContentType = "text/xml";
      PostData = postData;
    }


    public string MakeRequest()
    {
      return MakeRequest("");
    }

    public string MakeRequest(string parameters)
    {
      var request = (HttpWebRequest)WebRequest.Create(EndPoint + parameters);

      request.Method = Method.ToString();
      request.ContentLength = 0;
      request.ContentType = ContentType;

      if (!string.IsNullOrEmpty(PostData) && Method == HttpVerb.POST)
      {
        var encoding = new UTF8Encoding();
        var bytes = Encoding.GetEncoding("iso-8859-1").GetBytes(PostData);
        request.ContentLength = bytes.Length;

        using (var writeStream = request.GetRequestStream())
        {
          writeStream.Write(bytes, 0, bytes.Length);
        }
      }

      using (var response = (HttpWebResponse)request.GetResponse())
      {
        var responseValue = string.Empty;

        if (response.StatusCode != HttpStatusCode.OK)
        {
          var message = String.Format("Request failed. Received HTTP {0}", response.StatusCode);
          throw new ApplicationException(message);
        }

        // grab the response
        using (var responseStream = response.GetResponseStream())
        {
          if (responseStream != null)
            using (var reader = new StreamReader(responseStream))
            {
              responseValue = reader.ReadToEnd();
            }
        }

        return responseValue;
      }
    }

  } // class

}

How it works

The HttpWebRequest object in the System.Net namespace does all the heavy lifting. It makes the web request and has properties to defign how you want the request submitted across the web. From there I'm reading the response stream and returning it. The rest is just basic class design used to encapselate the functionality into a reusable component. I hope it serves you well Smile | :)

History

  •   11/21/2010 - Posted article w/samples.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionGetting Detailed WebException Error information Pin
Will Chung7-Dec-21 17:01
Will Chung7-Dec-21 17:01 
QuestionWhat if you need to add headers? Pin
GµårÐïåñ7-Jun-20 7:34
professionalGµårÐïåñ7-Jun-20 7:34 
AnswerRe: What if you need to add headers? Pin
Patrick Moon3-Jun-21 13:50
Patrick Moon3-Jun-21 13:50 
GeneralRe: What if you need to add headers? Pin
GµårÐïåñ3-Jun-21 14:09
professionalGµårÐïåñ3-Jun-21 14:09 
QuestionSimple and great, thank you! Pin
Member 104383291-Jun-17 13:19
Member 104383291-Jun-17 13:19 
QuestionPasing multiple values to PostData Pin
Member 1265168513-Aug-16 10:27
Member 1265168513-Aug-16 10:27 
QuestionUpload Sample code! Pin
Santosh Kokatnur20-May-16 19:54
Santosh Kokatnur20-May-16 19:54 
GeneralMy vote of 5 Pin
Parth J Patel26-Apr-16 22:54
professionalParth J Patel26-Apr-16 22:54 
QuestionGetting 403 : Forbidden on hosting in IIS Pin
Vikash RL2-Apr-16 5:36
Vikash RL2-Apr-16 5:36 
QuestionGood Contribution Pin
Ashok Kumar RV26-Jan-16 23:53
Ashok Kumar RV26-Jan-16 23:53 
SuggestionSome changes to use with Json Pin
Member 122438948-Jan-16 15:45
Member 122438948-Jan-16 15:45 
GeneralVery helpful Pin
Daniel Miller11-Nov-15 6:55
professionalDaniel Miller11-Nov-15 6:55 
QuestionGet data with parameter Pin
banmai_it18-Oct-15 17:32
banmai_it18-Oct-15 17:32 
GeneralMy vote of 1 Pin
abhijeetkpalash9-Jul-15 0:14
abhijeetkpalash9-Jul-15 0:14 
QuestionError: The remote server returned an error: (400) Bad Request Pin
Thakur Chandan2-Jun-15 1:17
Thakur Chandan2-Jun-15 1:17 
SuggestionC# RestClient Pin
Dalsoft23-Mar-15 4:35
Dalsoft23-Mar-15 4:35 
QuestionI get a URI exception Pin
Dilanka Kalutota26-Jan-15 1:22
Dilanka Kalutota26-Jan-15 1:22 
AnswerRe: I get a URI exception Pin
DelphiCoder6-Feb-15 22:03
DelphiCoder6-Feb-15 22:03 
QuestionVery Helpful Article Pin
Johan Vorster17-Nov-14 4:38
Johan Vorster17-Nov-14 4:38 
AnswerRe: Very Helpful Article Pin
chuff030520-Sep-17 4:48
chuff030520-Sep-17 4:48 
QuestionRedundancy Pin
Member 1065861322-Sep-14 0:06
Member 1065861322-Sep-14 0:06 
QuestionAuthorization Request Pin
KSGRao20-Aug-14 0:22
KSGRao20-Aug-14 0:22 
AnswerRe: Authorization Request Pin
Member 1044835919-Nov-14 17:53
Member 1044835919-Nov-14 17:53 
QuestionOracle Procedure for the above code Pin
SHERMIL9-Jun-14 1:13
SHERMIL9-Jun-14 1:13 
QuestionWhy not just use System.Net.WebClient class? Pin
CathalMF10-Feb-14 6:21
CathalMF10-Feb-14 6:21 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.