Difference between Authentication and Authorization ?
Answer Posted / rachana devi
In authentication, the system or the web application identifies its users through the credentials they provide. If it finds that the credentials are valid, they are authenticated, or else they are not.
In authorization, the system or the web application checks if the authenticated users can access the resources that they are trying to access or make a request for. In other words, it checks their rights and permissions over the requested resources. If it finds that they can access the resources, it means that they are authorized.
Thus, authentication involves checking the validity of the user credentials, and authorization involves checking the rights and permissions over the resources that an authenticated user has.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How can we get the user's ip address in laravel?
What is controller middleware in laravel?
What are redirect responses?
Name some inbuilt authentication controllers of laravel.
How to add additional sites in homestead environment?
How do I make my application serve its content in different languages?
What is laravel eloquent?
How to set cookies in laravel?
How to install laravel by composer?
What is namespace in laravel?
How to use insert statement in laravel?
What are the three service provider types?
What is remember token in laravel?
How to get current environment in laravel?
List out common artisan commands used in laravel.