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 to use joins in laravel?
Why middleware is used in laravel?
how to create subdomain routing in laravel 5?
How to set configuration values in laravel?
What is the significant difference between insert() and insertgetid() function in laravel?
Can you please explain the difference between laravel and codeigniter?
Tell me what is the purpose of using dd() function iin laravel?
How can we check the logged-in user info in laravel?
What are laravel contract’s?
How to launch vagrant box?
What is auth? How is it used?
What is routing and how, and what are the different ways to write it?
How to get cookies in laravel?
What is meant by Forms in Laravel ?
What do you know about closures in laravel?