in Angular by (31.6k points)
Explain Angular Authentication and Authorization.

1 Answer

0 votes
by (23.9k points)

The user login credentials are passed to an authenticate API, which is present on the server. Post server-side validation of the credentials, a JWT (JSON Web Token) is returned. The JWT has information or attributes regarding the current user. The user is then identified with the given JWT. This is called authentication.

Post logging-in successfully, different users have a different level of access. While some may access everything, access for others might be restricted to only some resources. The level of access is authorization.

Related questions

0 votes
asked Mar 7, 2022 in Web Services Security by rajeshsharma (23.9k points)
...