RESTful 端点返回多个不同的结构?
查看第三方 API (HTTP),它可以根据查询字符串中提供给端点的参数以不同结构(不是不同类型 - JSON、XML)返回数据 (XML)。
这对于 RESTful 服务端点来说是个好主意吗?
Looking at a third party API (HTTP) and it can return data (XML) in different structures (NOT different types - JSON, XML) depending on parameters supplied in the query string to an endpoint.
Is this a good idea for a RESTful service endpoint?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
还建议使用
HTTP Accept Header
来指定请求哪种表示形式。看看这个讨论。It is also recommended to use the
HTTP Accept Header
to specify which representation is requested. Have a look at this discussion.