を使用してPOSTパラメータを変更できます
session.setParams(session.getParams(...).putString(...))
ここで、オフセットと制限を渡したいと思います。setGETParams(...)やgetGETParams(...)のような関数はありません。どのようにできるのか?
リクエストがすべて設定されていると仮定すると、次のように追加のパラメーターを追加できます。
// Get the current request parameters
Bundle myRequestParams = myRequest.getParameters();
// Add the additional parameters
myRequestParams.putString("limit", "100");
myRequestParams.putString("offset", "20");
// Update the request parameters
myRequest.setParameters(myRequestParams);