You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 21, 2024. It is now read-only.
Attempted to use:
Map<String, String> parameters = new HashMap<String, String>();
parameters.put("page", Integer.toString(1));
parameters.put("ps", Integer.toString(25));
forumService.getForumTopicReplies(topicID, parameters);
The max result that I get is 10 results, and looking at the response, http call, there is no ps or page parameter passed thru.
I checked the code,
forumService.getForumTopicReplies(topicID, parameters);
=> getForumTopicReplies
public EntityList getForumTopicReplies(String topicUuid,
Map<String, String> parameters) throws ClientServicesException {
String url = ForumUrls.TOPIC_REPLIES.format(this,
ForumUrls.topicPart(topicUuid));
return getReplies(url, parameters);
}
==> getReplies -> NOTE THAT parameters is not passed thru.
private EntityList getReplies(String url,
Map<String, String> parameters) throws ClientServicesException {
return getForumReplyEntityList(url, null);
}
The text was updated successfully, but these errors were encountered: