Skip to content

Latest commit

 

History

History
13 lines (7 loc) · 459 Bytes

Authentication.md

File metadata and controls

13 lines (7 loc) · 459 Bytes

Auth Helps User(Client) to Connect to the Server(Back-end) and Server Connects to the Database.

  • Authentication is Validated on the Server not in the Browser.

  • Front-end is De-coupled.

  • Server is RESTful Api(stateless) or GraphQL

  • Server Generates a TOKEN after Validation is Successful, it Contains Meta-data.

  • Browser Stores that Token i.e Local Storage, and Attaches the Token to any request send from the User(Browser).