I am building a web app that needs to be secure. My question is: Is there any security advantage of hiding route parameters? And if so which ones? I am using angular.
Here is an example of hiding route parameters, are there any advantages in doing so?
UPDATE: What I mean by hiding url paramters is instead of having a url the reads
'https//yourApp/user/<user_id here>'
to have one that reads
'https//yourApp/user'
but behind the scenes you are processing the request using the user id.