我一直在尝试创建一个使用 RestSharp 调用 Rest API 的简单原型 Web 应用程序。
我一直找不到一个很好的例子。有人可以分享并指导我找到正确的资源吗?我已经看过以下内容,但没有提供我正在寻找的内容,即功能齐全的示例:
http://restsharp.org/(没有完整的示例应用程序)
http://www.stum.de/2009/12/22/using-restsharp-to-consume-restful-web-services/(好像老了)
在进行原型设计时,我收到以下代码错误:
RestResponse response = client.Execute(request);
*Cannot implicitly convert type 'IRestResponse' to 'RestResponse'. An explicit conversion exists (are you missing a cast?) *