我一直在尝试创建一个使用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?) *
@JohnSheehan看起来twillio使用HttpClient或restsharp
—
tatigo