1
I’m creating a system using MEAN Stack and I came up with a question ..
My angular client application requests the ex api: POST http://127.0.0.1/api/product
If some malicious user found the url of the api he could post without going through the client of my application for example, is there any way to avoid/circumvent it ? Like making requests for my api only from the client I allow ?
Usually you create a hash that works only for that session, only it implies not letting your Restful application which is the default that prevents you from having any session control
– Sorack