Hi
I'm trying to figure out whether this library supports my use case: I need to provide a way for users to authenticate themselves via their FB login to my website.
I saw that FacebookClient has the getLoginDialogUrl() method. If I understand correctly, I think this might be used to generate a link which the user could click to browse to the FB login page, and then be redirected back to my site. But I'm still not clear how my site would actually grok their details after they've logged in. Presumably FB would have set some kind of cookie in their browser indicating that they've logged in, but how do I on the server side now get that information? Which relevant RestFB APIs should I be using?
Thanks