There are some way to hide the Params in the URL?

Hi community.
There are some way to hide the Params in the URL?
Thank you, a greeting.

Hello @andresbasur98
Not sure you can unless you use HTTP Post although you could likely encrypt them.
You can install the app to hide the address bar but the params will still be available via debugger etc.

Why do you want to hide them?

Hiding parameters is not possible. If you don't want sensitive data to appear in the url then don't pass it as a parameter. You can use sessionStorage instead. Since sessionStorage is also accessible via developer tools you may have to encrypt the values.

Okeey, thank you very much @korchev @mumfie