Reputation: 661
I am currently developing a mobile app that is using a REST interface to fetch and post data to and from the server. I changed each request to include a token from Parse that the server can verify. I am trying to implement HTTPS right now, but I am wondering what other security features should I include in my application to make sure the request is verified as the correct user. Any resources on the subject would be much appreciated.
Upvotes: 0
Views: 51
Reputation: 1430
Here is a list of some additional measures you can put in place.
index.js
file to use the Allow Client Class Creation option. Disable at the production stage.Over and above that you can also make use express-brute and other middleware packages. There are several packages on NPM that are dedicated to that
Upvotes: 1