我正在为 android 使用 Http 库,链接到库,我需要能够从 get 请求中访问响应标头;
我该怎么做呢?这是我用来发出正常请求的代码:
public void getPublicTimeline() throws JSONException {
MyHttpClass.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);
}
});
}
}
我需要访问响应标头,因为我需要从标头中获取随机数代码。
请任何建议将不胜感激。