I want to get my Facebook friend and profile picture with the JSON get method. I wrote some code, but when I get a profile picture it is take too long time. I think my way is not the best effort and I think when I have a lot of friend application, it will be crash because it is out of memory.
What is the solution?
Code:
public ArrayList<Person> readFacebookFriend() {
ArrayList<Person> kisiler=new ArrayList<Person>();
HttpClient client = new DefaultHttpClient();
HttpGet httpGet = new HttpGet(
"https://graph.facebook.com/me/friends?access_token=AAAAAAITEghMBABRP2MgusuqZBrkJjmiUuekMcdpV0QCYf3zB8ks7Eabkvh8zEjNpK1DvbHMZCuVDa97hZCZBqdswOZC1r74ZCZBJHF4yZAzU3wZDZD");
try {
HttpResponse response = client.execute(httpGet);
BufferedReader reader = new BufferedReader(new InputStreamReader(response.getEntity().getContent(), "UTF-8"));
String json = reader.readLine();
JSONObject object = (JSONObject) new JSONTokener(json).nextValue();
JSONArray locations = object.getJSONArray("data");
for(int i=0;i<locations.length();i++)
{
String k= locations.get(i).toString();
JSONObject isim = (JSONObject) new JSONTokener(k).nextValue();
Person per=new Person();
per.id=isim.getString("id");
per.name=isim.getString("name");
per.ProfilePhotoUrl="http://graph.facebook.com/"+per.id+"/picture?type=small";
kisiler.add(per);
}