I'm currently working on a project with the following actors:
- a web server hosting a zend php application with a database.
- 2 mobile apps (iOS and Android) which retrieve/post data from/to the server.
I'm using HTTPS (with a trusted certificate) to comunicate with the server. To retrieve data from the server, GET method is used. To push data to the server, mobile apps use POST method over HTTPS.
Some transfers, such as user sign in/user data update have to be secured because of their sensitive data.
What kind of solution should i use to enforce those transfers security?
Thanks for your help!