Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

With this code:

string fqlQuery = string.Empty;
string sUIDList = string.Empty;

IDictionary<string, object> Parameters = new Dictionary<string, object>(); 
FacebookApp fbApp = new FacebookApp();
fqlQuery = "SELECT uid, name, pic, profile_url FROM user WHERE uid IN (" + sUIList + ")"; 

Parameters.Add("method", "fql.query");
Parameters.Add("query", fqlQuery); 
var Info = (JsonArray)fbApp.Api(Parameters);

the method Api in the Facebook SDK uses the RestServer and not the Graph Api. How can I do a FQL Query with Graph API?

share|improve this question

1 Answer

Short answer, you can't. We still need to use fql.query to perform FQL actions.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.