This is the experience I want for my users:
- Open app
- Sign in with facebook or twitter
- Communicate with my web service in a secure fashion
I would like to use the native sign in to these services (Facebook and twitter) in iOS, but I want all communication with my web service to be secure and authenticated.
At the moment I can do a iOS native sign on which authenticates the user. I then know that the user is signed in and I can query the authentication providers for information about the user. What this does not give me is a way to then communicate with my web service and know that the person communicating with the web service is an authenticated user.
Or I can implement the sign on in my web service (or use something like this to deal with it). Then I can definitely know that the user is authenticated but then I miss the nice native experience of signing in.
Is there a hybrid approach where the user can sign in using the native iOS controls and I can use that authentication information to form secure access to my web service?