0 votes
in Angular by
Explain Angular Authentication and Authorization.

1 Answer

0 votes
by

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 Oct 26, 2023 in Laravel by rajeshsharma
0 votes
asked Nov 2, 2021 in Cloud Foundry by rajeshsharma
...