0
我試圖從Android的Facebook的Graph API獲取新聞Feed。 當我試圖解析這個JSON時,它沒有得到任何東西,不是NULL,但沒有。Facebook API新聞提要Android
這是我的代碼,它得到的飼料。代碼從計算器和圖形API文檔中獲取50/50
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_news_feed);
userProfile = (Profile) getIntent().getParcelableExtra("Profile");
stringsForList = new ArrayList<>();
adapter = new ArrayAdapter<>(getApplicationContext(), android.R.layout.simple_list_item_1, stringsForList);
newsFeed = (ListView)findViewById(R.id.newsFeed);
new GraphRequest(
AccessToken.getCurrentAccessToken(),
"/me",
null,
HttpMethod.GET,
new GraphRequest.Callback() {
public void onCompleted(GraphResponse response) {
try {
JSONObject mainObject = response.getJSONObject();
JSONObject feed = mainObject.getJSONObject("feed");
JSONArray data = feed.getJSONArray("data");
if(data == null) Log.d(LOG_TAG, "data is null");
// StringBuilder stringForArray;
for(int i = 0; i < data.length(); i++)
{
//stringForArray = null;
JSONObject singleNews = data.getJSONObject(i);
if(singleNews == null) Log.d(LOG_TAG, "news is null");
}
}catch(JSONException ex)
{
ex.printStackTrace();
}
}
}
).executeAsync();
}
這裏是我試圖解析的JSON文件。
"feed": {
"data": [
{
"message": "Я їду на фестиваль ЗАХІД",
"story": "Oleg Misko shared Zaxidfest's photo — with Василь Угринюк and 2 others.",
"created_time": "2016-06-20T06:55:32+0000",
"id": "1272345062793233_1291027040925035"
},
{
"story": "Oleg Misko shared Zaxidfest's post.",
"created_time": "2016-06-20T06:55:01+0000",
"id": "1272345062793233_1291026900925049"
},
{
"message": "Я їду на фестиваль ЗАХІД",
"story": "Demian Mysakovets shared Zaxidfest's photo — with Sophia Hoshko and 2 others.",
"created_time": "2016-06-18T15:27:35+0000",
"id": "1272345062793233_1289904527703953"
},
{
"story": "Oleg Misko shared Територія твого розвитку's post.",
"created_time": "2016-06-18T08:55:45+0000",
"id": "1272345062793233_1289698067724599"
},
{
"story": "Oleg Misko shared JavaRush.RU's photo.",
"created_time": "2016-06-07T19:58:03+0000",
"id": "1272345062793233_1282518005109272"
},
{
"story": "Oleg Misko shared a link.",
"created_time": "2016-03-31T15:42:38+0000",
"id": "1272345062793233_1234673696560370"
},
{
"story": "Oleg Misko updated his profile picture.",
"created_time": "2016-03-19T09:53:02+0000",
"id": "1272345062793233_1220982634596143"
},
{
"message": "posdravliayu.",
"created_time": "2016-02-19T15:44:14+0000",
"id": "1272345062793233_1200638139963926"
},
{
"story": "Oleg Misko shared Zaxidfest's video.",
"created_time": "2016-01-25T09:59:35+0000",
"id": "1272345062793233_1184872831540457"
},
{
"story": "Oleg Misko shared Територія твого розвитку's photo.",
"created_time": "2016-01-14T12:35:45+0000",
"id": "1272345062793233_1178560875504986"
}
]
你是如何在獲取數組數據後獲取json數據的?或者你是否獲得數據null? – Drv
我沒有變爲null,但是我不知道如何從這個JSON文件中正確獲取數據 需要採取「故事」和「created_time」字符串 –