Hide URL in network tab of inspect element?

I am building an app but one of the apps components is to guess a secret word. How I have set up everything, the secret word is part of the document on firestore so when the use calls for the firestore document, the secret word is part of the url in the network tab. Is there anyway to hide that word/scramble it so it isn’t super obvious at first glance? Which it is right now.
It’s a reactjs app.
Changing document names at this point would be a ridiculous amount of work and I only recently noticed the problem.

I looked at this question (How to hide data from network tab?) but it didn’t resolve my query.

  • the easiest way is to encrypt the word and pass it. you can decrypt it in the backend. There are many encryption algorithms you can use.

    – 

Leave a Comment