i am using facebook-android-sdk for a single sign on, but i can`t get user facebook profile data. this is my code:
try {
JSONObject me = new JSONObject(facebook.request("me"));
String id = me.getString("id");
String name = me.getString("name");
System.out.println("Id: " + id + " ---- " + name);
}catch(Exception ex) {
System.out.println(ex);
}
How get user data profile?
Thanks you!
Provided that you logged in.
The request listener: