学习服务器 RESTful 代码的最佳方法是什么?
我是一名经验丰富的客户端应用程序开发人员 (C++/C#),但需要快速掌握编写服务器端代码以执行 RESTful 交互的速度。 具体来说,我需要学习如何通过 RESTful API 与 OpenSocial 容器交换数据。
I'm an experienced client application developer (C++/C#), but need to come up to speed quickly on writing server side code to perform RESTful interactions. Specifically, I need to learn how to exchange data with OpenSocial containers via the RESTful API.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
RESTful Web 服务
RESTful Web Services
我发现这个这个是对RESTful Web应用程序的一个很好的介绍,尽管它不指 OpenSocial 容器。
I found this this to be a good introduction to RESTful web apps, although it doesn't refer to OpenSocial containers.
RESTWiki 是一个非常好的资源,还有经典的 “我如何向我的妻子解释 REST”。
但是,不要忘记直接从 源代码中阅读它,它并不像乍看起来那么难读。
我假设您将通过 HTTP 进行 REST,因此 这 会非常方便。
最后,考虑到 OpenSocial 支持 Atom 发布协议,这 将是有用。
享受。
The RESTWiki is a very good resource and then there is the classic "How I explained REST to my Wife".
However, don't forget to go read about it directly from the source, it is not as difficult a read as it may first seem.
And I am assuming you will be doing REST over HTTP so this will come in very handy.
Lastly, considering OpenSocial supports the Atom Publishing Protocol, this will be useful.
Enjoy.