关闭。这个问题不符合 Stack Overflow guidelines 。它目前不接受答案。
想改善这个问题吗?更新问题,以便堆栈溢出为 on-topic。
5年前关闭。
Improve this question
我一直在尝试创建一个简单的原型(prototype) Web 应用程序,它使用 RestSharp 来调用 Rest API。
我一直没能找到一个很好的例子。任何人都可以分享并指导我找到正确的资源吗?我已经看过以下内容,但没有提供我正在寻找的内容,即功能齐全的示例:
http://restsharp.org/(没有完整的应用示例)
http://www.stum.de/2009/12/22/using-restsharp-to-consume-restful-web-services/(好像老了)
在进行原型(prototype)设计时,我收到以下代码的错误:
RestResponse response = client.Execute(request);
*Cannot implicitly convert type 'IRestResponse' to 'RestResponse'. An explicit conversion exists (are you missing a cast?) *
最佳答案
我设法找到了有关该主题的博客文章,该文章链接到一个实现 RestSharp 的开源项目。希望对你有所帮助。
http://dkdevelopment.net/2010/05/18/dropbox-api-and-restsharp-for-a-c-developer/
博客文章是一个 2 部分,项目在这里:
https://github.com/dkarzon/DropNet
如果你有一个关于什么不起作用的完整例子,它可能会有所帮助。如果您不提供代码,就很难了解客户端是如何设置的。
关于c# - RestSharp 简单完整示例,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10226089/