Hi!
Does anyone know the url to get the full topic thread using the Tempo Social API?
Thanks!
In order to prevent Tempo Social from returning an inordinately large number of objects from a single request, all requests for a Link collection, such as a Topic's ALL_REPLIES collection, will default to 10 items per page if a page limit is not specified.
Currently, if you want to fetch all items in a single page then you must make two requests. First, you need to know how many items are in a collection. To do this, you submit the following HTTP request:
GET http://{server host}/xapi/v2/social.topic.{topic resource ID}/all_replies/count
This will return a Count object that looks like the following:
{ "@cls": "count", "result": 7 }
Using that value, you can then specify page limit as part of your second request:
GET http://{server host}/xapi/v2/social.topic.{topic resource ID}/all_replies?limit=7
This will return every object in the collection, in this case being every reply on a particular topic.