What is an Endpoint?

后端 未结 9 1606
不思量自难忘°
不思量自难忘° 2020-12-04 04:39

I have been reading about OAuth and it keeps talking about endpoints. What is exactly an endpoint?

相关标签:
9条回答
  • 2020-12-04 05:27

    An endpoint is the 'connection point' of a service, tool, or application accessed over a network. In the world of software, any software application that is running and "listening" for connections uses an endpoint as the "front door." When you want to connect to the application/service/tool to exchange data you connect to its endpoint

    0 讨论(0)
  • 2020-12-04 05:31

    An endpoint is a URL pattern used to communicate with an API.

    0 讨论(0)
  • 2020-12-04 05:31

    The term Endpoint was initially used for WCF services. Later even though this word is being used synonymous to API resources, REST recommends to call these URI (URI[s] which understand HTTP verbs and follow REST architecture) as "Resource".

    In a nutshell, a Resource or Endpoint is kind of an entry point to a remotely hosted application which lets the users to communicate to it via HTTP protocol.

    0 讨论(0)
提交回复
热议问题