最佳答案
我一直在尝试创建一个简单的原型 web 应用程序,它使用 RestSharp 调用 RestAPI。
我找不到一个好的例子。有没有人能告诉我怎么找到正确的资源?我已经看了下面的例子,但没有提供我想要的全功能示例:
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?) *