我正在尝试使用 android-async-http 库http://loopj.com/android-async-http/
它建议使用此代码:
public void getPublicTimeline() throws JSONException {
TwitterRestClient.get("statuses/public_timeline.json", null, new JsonHttpResponseHandler() {
@Override
public void onSuccess(JSONArray timeline) {
// Pull out the first event on the public timeline
JSONObject firstEvent = timeline.get(0);
String tweetText = firstEvent.getString("text");
// Do something with the response
System.out.println(tweetText);
}
});
}
}
但现在我的问题是我需要获取响应对象,并且还需要获取 http 标头。
如何获取 http 标头?