I'm writing a web app that relies on logging in via Facebook. Here's what I want to do:
When the user clicks the "Connect with Facebook" button on the web app, another tab will open in his browser with the Facebook login link that lets him authenticate the app.
Once the user authenticates the app, the login tab will close, the the user will be on the original web app page
The web app will detect that the user has connected with Facebook, and logs the user in.
Right now, the only solution I can think of is having the web app continuously querying Facebook to see if the user has been logged in, is there a better way of doing this?
