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.

On this page facebook tells you, that you can somehow use the Facebook-Query-Language: http://developers.facebook.com/docs/reference/fql/profile

But I just dont understand what the query looks like. On Stackoverflow I just find exapmles on how to use the FQL with PHP. But I want to use it out of and Android Application. Anybody can give me URLs or Code Examples?

share|improve this question

3 Answers

Using the Facebook Android SDK, an FQL call can be implemented like this:

 String query = "SELECT name FROM user WHERE uid = me()";
 Bundle params = new Bundle();
 params.putString("method", "fql.query");
 params.putString("query", query);
 mAsyncFacebookRunner.request(null, params, new FQLRequestListener());

where FQLRequestListener extends RequestListener, just as for a Graph call.

For a complete source code example, have a look at Facebook's Android HackBook.

share|improve this answer
@Pascal Klein just a friendly reminder: if you find the answer answered your question, kindly accept it. – Gunnar Karlsson Dec 16 '12 at 4:46

I haven't tried it, but for calling fql you can try

public String request(String fql)  throws FileNotFoundException, MalformedURLException, IOException {
Bundle parameters = new Bundle
parameters.putString("format", "json");
parameters.putString("query", fql);
parameters.putString("access_token",  mFacebook.getAccessToken());

if (mFacebook.isSessionValid()) {
    params.putString("access_token", mFacebook.getAccessToken());
}
        String url = (fql != null) ? "https://api.facebook.com/method/fql.query" : "https://api.facebook.com/restserver.php";
return Util.openUrl(url, "GET", params);
}

It should work.

You have to take into acount that mFacebook is an authenticated Facebook Object (of the Facebook Android SDK). Also, that the fql sould be filled with a format supported by an url. For example:

select+pic_small+from+profile+where+id+%3D+USERID;

instead of

select pic_small from profile where id=USERID;
share|improve this answer

This seems to work if I put it into the Browser, but I dont know how to tell the Android Facebook SDK to use this query: https://api.facebook.com/method/fql.query?query=select+pic_small+from+profile+where+id+%3D+USERID;&access_token=ACCESSTOKEN

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.