我正在使用一个用于android的Http库Link to Library,我需要能够从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);
}
});
}
}
我需要访问响应头,因为我需要从头部获取一个nonce代码。
请非常感谢任何建议。