Facebook access token

Would it be possible to have Corona return the access token after a successful login? This would allow us to make non-graph api calls and be able to use fql as well.

Without the access token we are not able to do anything except the graph api calls correct?

I want to be able to either make direct calls to facebook via http requests or to pass the access token to my server so that I can make some of the calls over there.

I would imagine this is a pretty trivial thing, as the facebook sdk specifically returns the token and uses it in all graph requests. [import]uid: 47373 topic_id: 14333 reply_id: 314333[/import]

A little more info. I want to be able to use something along the lines of the old Friends.getAppUsers method.

One solution I have thought of is just pulling all a person’s friends, passing the uids to my server and then having it return the uids of people that have already used the app (and thus are stored in my database). However, if a person has a lot of friends, this could potentially be a slow call, having to pass all of the ids up to the server.

If, however, I could just store the access token on the server itself, I could make any and all calls that I needed to directly there, returning the results.

Directly on the phone I could also make a direct call to facebook passing along a fql query which will return what I am looking for.

Either way, I will need to have the access token. [import]uid: 47373 topic_id: 14333 reply_id: 52929[/import]