我正在使用 Facebook SDK 3.5 来集成 facebook 登录并通过 android 应用程序获取登录用户的详细信息。请查看我的代码,我可以在其中获取登录用户的各种信息。
Request.executeMeRequestAsync(session, new Request.GraphUserCallback() {
@Override
public void onCompleted(GraphUser user, Response response) {
if (user != null) {
String firstName = user.getFirstName();
String lastName = user.getLastName();
String id = user.getId();
String email = user.getProperty("email").toString();
Log.e("facebookid", id);
Log.e("firstName", firstName);
Log.e("lastName", lastName);
Log.e("email", email);
String total = id + "," + firstName + "," + lastName +","+email;
welcome.setText(total);
System.out.println("##facebookid"+ id);
System.out.println("##firstName"+ firstName);
System.out.println("##lastName"+ lastName);
System.out.println("##email"+ email);
}
}
});
但是我没有找到有关登录用户的雇主详细信息的任何线索。我怎样才能获得这些信息。有没有可能。请帮忙。