I have an iOS application that authenticates to a Rails application. The first time it authenticates, it needs to submit a username and password and in return the rails application returns a token which the iOS application can use to authenticate in further communications.
The information being passed between them consists of the user's email address and other trivial information, but nothing highly sensitive like financial details etc. I need a way to protect these communications.
What is the simplest way I can add this protection?