2
I am using a system that, using JWT tokens pass for authentication, the problem is that I can easily collect the headers of the API calls and grab my token to be able to order whatever you want and take the data of any user. I believe the programmers are only blocking the route based on this code:
Route::group(['middleware' => 'jwt.auth'], function()
I’d like to know something to fill that problem(a second authentication or blocking method so that users who have token cannot collect information from other users and inform programmers, because I am afraid of having my data collected by some other user with ulterior motives.