今天就学习课程吧!
今天就开通帐号,24,700 门业界名师课程任您挑!
Authentication
- [Instructor] Authentication is the act of checking that the entity accessing your system is who they claim to be. There are many authentication schemes, the HTTP authentication schemes define several ones that you can use. The basic authentication scheme is geared toward user and password management. And the bearer authentication scheme is geared toward programmatical access. Popular bearer authentication scheme uses an authentication token. There are many ways to generate this token, such as OAuth2, Jason Web Tokens, known as JOT or JWT, and others. You should do your homework and pick the one that's best for your needs. And please, don't invent your own. And if you decide to store passwords, never do it in clear text. Salt and hash them. You can use services such as Auth0 and Okta to manage users and authentication for you. These services will do most of the heavy lifting, but you will still need to integrate…