API端点语义

发布于 2024-10-17 23:00:26 字数 481 浏览 3 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

关于从前 2024-10-24 23:00:26

根据 这篇 Wikipedia 文章,端点是一个 Web 服务,由 WSDL 文件定义,以及

除了定义
网络地址或连接点
服务。它通常代表
通过一个简单的 HTTP URL 字符串。

Microsoft 使用术语端点在不同的上下文中,但它们都相当于同一件事:端点是整个接口,而不是一个特定的方法。

REST 端点的上下文中,端点将包含必需的 GET、PUT、POST 和 DELETE方法(如适用)。

According to this Wikipedia article, the endpoint is a web service, defined by a WSDL file, and

does nothing more than define the
address or connection point to a web
service. It is typically represented
by a simple HTTP URL string.

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).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文