I have a pretty simple (hopefully) question about using the Facebook Javascript API.
We are currently using the server-side flow to log users into our site, this gets us an auth token and sets a cookie. I'm trying to use the Javascript API to query our logged-in users' friends lists, but I only get undefined out of every call to FB.api. Even FB.getLoginStatus returns undefined.
This page leads me to believe that we have it backwards. Is it true that we need to do login using the client-side flow for us to use the Javascript API at all?
I thought that you would be able to use the cookie regardless of where it came from...