I have an application (specifically ASP.NET MVC) that allows members to register using their Facebook accounts. So I'm trying to keep the sessions in sync, and if Facebook users sign out of FB after being active on my site, I want them to know that they will need to sign back in prior to doing any FB-specific actions. Likewise, if they sign in to FB after having been signed out of my site, I want the site to detect this and sign back in.
I know how to sign a user in and out of FB, and have this working. What I don't have working, is how to detect the above. It seems like FB.getLoginStatus would do the trick, but I need a server-side way to do this. I've messed with graph.facebook.com/oauth, but I don't think this is meant for doing what I'm trying to accomplish.
Is this possible, and if so, how?
Thanks in advance.