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 コードを取得する必要があるため、応答ヘッダーにアクセスする必要があります。
アドバイスをいただければ幸いです。