How can I execute a FQL query with Facebook Graph API
问题 I'm looking without any success for a way to execute a FQL(facebook query language) query with the new Open Graph API. Does anyone know how I can do this? Found the answer here with this excellent example: http://code.google.com/p/facebook-cpp-graph-api/ 回答1: Here's an example of how to do a FQL query using the Graph API and JavaScript FB.api( { method: 'fql.query', query: 'SELECT uid, first_name, last_name FROM user WHERE uid = ' + someUid }, function(data) { // do something with the