I'm writing an ASP.NET server to synchronize my mobile (Mono-based) game across devices using SignalR. The server makes sure that the users are all playing the same puzzle and such. I'm having trouble understanding how to handle authentication in this scenario. I would like to use Facebook to authenticate the users and store their scores in a database. However, I'm not sure how to guarantee that the users are authenticated at the beginning. Almost every sample that I have found are all specific to browser-based applications/services.
- Would using a
IHttpModulethat checks with Facebook (via the context'sAuthenticateRequestevent) be sufficient? - Wouldn't the above method be too slow for many connection?
- How can I handle the whole redirect sequence with Facebook since this is a nonbrowser-based application?