I have an ASP.NET MVC Web Api web service and some mobile applications that use it.
I'm struggling to implement an identity provider and security for my app and web service. Can I use Facebook authentication to manage the identity of my users? Reading through the FB Login documentation, I can't see how ... I'm imagining that I would have the users log in via FB, go through the authentication flow that I choose to implement, and then get back an access token. But what happens next time they open my app? How are they authenticated again, and what do I store in my database that uniquely identifies a Facebook user (and user of my app)? I need their identity in the context of my app, not just to know that Facebook said they were OK.
Since this is a Web Api serving up only JSON (no UI), I prefer not to use any javascript. But the fact that you need to redirect at some point in the flows is a concern to me also, because the mobile app shouldn't redirect during login.