I've been going though the following: https://developers.facebook.com/docs/howtos/androidsdk/3.0/run-fql-queries/#step2
which has the following code (I changed the fql query for simplicity):
queryButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
String fqlQuery = "SELECT name FROM user WHERE uid IN " +
"(SELECT uid2 FROM friend WHERE uid1 = me()LIMIT 2)";
Bundle params = new Bundle();
params.putString("q", fqlQuery);
Session session = Session.getActiveSession();
Request request = new Request(session,
"/fql",
params,
HttpMethod.GET,
new Request.Callback(){
public void onCompleted(Response response) {
Log.i(TAG, "Result: " + response.toString());
}
});
Request.executeBatchAsync(request);
}
});
looking specifically at the Log.i, response.toString() returns something in this format:
Result: {Response: responseCode: 200, graphObject: GraphObject{graphObjectClass=GraphObject, state={"data":[{"name":"John Doe"},{"name":"Jake Josh"}]}}, error: null, isFromCache:false}
now my assumption was that response was a json obj so I tried something like this:
JSONObject json=new JSONObject(response);
but this isn't working, so I'm not really sure how to read the response I'm getting, strictly speaking I just want to loop over the names, but can't figure out how to actually read the response