Skip to content

Latest commit

 

History

History
24 lines (13 loc) · 927 Bytes

client_validation.md

File metadata and controls

24 lines (13 loc) · 927 Bytes

Client validation

General

Client validation is a vital part of almost every enterprise application and should be considered basic training.

Session

Sessions are at the time of writing this document the most common way to login a user to a application and allow them access to private pages.

Json web tokens (JWT)

JWT is at the time of writing this document a popular way to allow stateless validation for a client connecting to a server.

OAuth

OAuth is at the time of writing this document a popular way to let users provide access to information provided by a provider to a third party application.

Common tools

back