我正在使用facebook-android-sdk進行單一登錄,但我無法獲取用戶的Facebook資料數據。這是我的代碼:獲取用戶資料facebook使用oficial facebook-android-sdk
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);
}
如何獲取用戶數據配置文件? 謝謝!
我相信這是一個有效的問題 – Yar