My goal is to use the Read API to calculate the postcount of a user for a certain period of time.
For this my approach would be to query all postings of a user and then filter out on the code side those postings that lie in a given period.
According to the Read API documentation I have queried the user posts via:
GET /api/user/{userslug}/posts
However, it seems that this API call only returns a maximum of 20 posts.
But how can I retrieve all posts of a user?
I also tried this API call:
GET /api/user/uid/{userslug}/export/posts
but it doesn't seem to work at all (maybe it is outdated?). If I change the user slug accordingly, I get no result page, but 404.