你能从JsonHttpResponseHandler()获得Http头吗?

时间:2013-08-05 21:33:04

标签: java android http http-headers

我正在使用一个用于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代码。

请非常感谢任何建议。

0 个答案:

没有答案