Fql Queries?

Is there an easy way to use the facebook library to do a FQL query instead of graph?  I am looking to get a list of friends that meet criteria rather than just the entire friends list, and the only way I can seem to do it is by FQL, however the facebook.request concatenates the access token with a ? and that needs to be a &.  I have tried doing an http request and it would just be easier if there were a way to do so with facebook.

basically the format needs to be

facebook.com/fql?q=[arguments]&[accesstoken]&[json]

but when using facebook request it comes out

facebook.com/fql?q=[arguments]?[accesstoken]&[json]
 

Two months and no reply to this? :frowning:

I need to do an FQL too! Can anybody help please?

Two months and no reply to this? :frowning:

I need to do an FQL too! Can anybody help please?

You can run a FQL query using ordinary facebook.request in Corona

facebook.request("/fql?q=SELECT+uid2+FROM+friend+WHERE+uid1=me()")

You can run a FQL query using ordinary facebook.request in Corona

facebook.request("/fql?q=SELECT+uid2+FROM+friend+WHERE+uid1=me()")