API端点语义
API 端点是“方法”,例如 https://api.foursquare.com/v2/venues/ 或包含非查询字符串参数的完整 URL,例如 https://api.foursquare .com/v2/venues/5104
换句话说,这两个单独的端点还是被视为同一端点? http://myapi.com/somemodel/1
http://myapi.com/somemodel/2
Is an API endpoint the 'method', like https://api.foursquare.com/v2/venues/ or the full URL including non-query-string parameters like https://api.foursquare.com/v2/venues/5104
In other words, are these two separate endpoints or considered the same endpoint?
http://myapi.com/somemodel/1
http://myapi.com/somemodel/2
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据 这篇 Wikipedia 文章,端点是一个 Web 服务,由 WSDL 文件定义,以及
Microsoft 使用术语
端点
在不同的上下文中,但它们都相当于同一件事:端点是整个接口,而不是一个特定的方法。在 REST 端点的上下文中,端点将包含必需的 GET、PUT、POST 和 DELETE方法(如适用)。
According to this Wikipedia article, the endpoint is a web service, defined by a WSDL file, and
Microsoft uses the term
endpoint
in various contexts, but they all amount to the same thing: the endpoint is the entire interface, not one particular method.In the context of a REST endpoint, the endpoint would contain the requisite GET, PUT, POST and DELETE methods (as applicable).