2013-05-31 87 views
1

您好我正在使用SDK Android,Eclipse和API的Facebook在Android上編程。我使用此代碼來獲得生日。API Facebook返回null與getBirthday()

public void onCompleted(GraphUser user, Response response) { 
    if (user != null) { 
     user.getBirthday(); 

但getBirthday返回null。

我需要知道用戶的生日。我嘗試讓JSON與此代碼:

JSONObject json = user.getInnerJSONObject(); 

檢查JSON,日期不會出現。我能做些什麼來獲得生日?

回答