Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Info

A quick reference on creating service endpoints - an API

URL Structure

...

...

The root/home path is simply protocol + sub-domain + domain

An endpoint can simply be described as the protocol + sub-domain + domain + path


Setting Request Handlers

A Web Server receives Requests, processes them, and returns a Response.  We need to establish route handling in our application to handle these Requests. 

...