Reputation: 17383
I have a C#
server side web service. but I don't want user can to see my requests like request tab from client's browsers.
now, I haven't been find any solution on SO. what is the best solution to do this?
I think I can use a node.js
server-side and render my reactjs
inside it and my node.js
send my requests to C#
server side. like this:
React.js<--(render)--Node.js--(Send/Receive api's)-->C#
I don't know if I use a node.js
server, my requests will be hidden from clients?
I don't want to use reactjs.net
.
Upvotes: 1
Views: 2373
Reputation: 762
If you're making a HTTP request to node server, and making the stealth request from NodeJS to another server, that request will not be visible to the client.
Alternatively, you can make an encrypted request. Although URL and some part of encryption algorithm will still be exposed at client's end.
Upvotes: 1