For an Android app, i would like to fetch the number of friends of a friend, and do it for all of the users friend and store it in an array.
my programming knowledge is very light though, i need help finding the right way.
currently i'm trying to go to facebook resource page and look for : "FriendCount":
But i faild trying to do that for www.facebook.com using java. in this way i'm trying to get facebook recource but somehow it's works for any website but facebook.com. ("twitter" has the same problem).
note: i'm sure that there is a way better approach then the one i took:
any references that could help me?
package de.vogella.web.html;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.URL;
public class ReadWebPage {
public static void main(String[] args) {
String urltext = "http://www.facebook.com";
BufferedReader in = null;
try {
URL url = new URL(urltext);
in = new BufferedReader(new InputStreamReader(url.openStream()));
String inputLine;
while ((inputLine = in.readLine()) != null) {
System.out.println(inputLine);
}
} catch (Exception e) {
e.printStackTrace();
} finally {
if (in != null) {
try {
in.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
}