I want to develop apps for Android, iOS and have a web interface as well, I want the mobile apps to communicate with the server, which is the best way I can make this secure? I would like to use something that works well with both Android and iOS and it is easy to implement server side.
1 Answer
Use SSL on your server. Covers all of your requirements. Besides, any non-SSL HTTP communication is insecure by default.
1 Comment
Evos
Just one more thing, if you would use SSL you should get normal (not self-signed) SSL serticiface. Android default http client doesn't accept self-signed SSL sertificates.