I've been trying to create a simple prototype web application that uses RestSharp to call Rest API.
I've not been able to find one good example of it. Could anyone please share and direct me to right resource please? I've already looked at following, and doesn't provide what I'm looking for i.e fully functional example:
http://restsharp.org/ (Doesn't have full application with example)
http://www.stum.de/2009/12/22/using-restsharp-to-consume-restful-web-services/ (seems to be old)
While prototyping I get the error below for code below:
RestResponse response = client.Execute(request);
*Cannot implicitly convert type 'IRestResponse' to 'RestResponse'. An explicit conversion exists (are you missing a cast?) *