Skip to content

HTTP basic auth

Nicholas Teal edited this page Apr 3, 2018 · 2 revisions

<< back to table of contents

Basic Authentication

  • Happens over HTTPS
  • To gain access, this method requires client to submit username and password (which will be base64 encoded)

Method:

  • Client sends request
    • If request does not contain appropriate authorization header, receives unauthorized HTTP Response code and a challenge
    • If request contains incorrect authorization header, receives forbidden HTTP Response code
    • If request contains correct authorization header, request is processed

Clone this wiki locally