Thanks for your reply. I read the thread before, and I didn’t understand how to fetch all of posts ( perhaps, there is need to use page parameter iteratively ).
If there are 600 posts in channel, I think you need to request with parameters below.
{ per_page : 200, page: 0 }
{ per_page : 200, page: 1 }
{ per_page : 200, page: 2 }
And I want to specify the since parameter.
{ since: xxxxxxxxxxxx, per_page: 200, page: 0 }
{ since: xxxxxxxxxxxx, per_page: 200, page: 1 }
…
But there is no difference in the results obtained with above 2 parameters.
So, I thought there is no way to use both since and page (or per_page ) parameters and post this thread.
I apologize my explanation is not clear enough. Thanks.
Would you like to ask about this in our community server’s Developer channel. That way you’ll get a quicker response from one of our developers (and possibly also from one of our community members who might know the answer). If you need any help, just let me know and I can also post the question there.
Seems like your post didn’t get replies so just letting you know that I also posted your question to “API v4” channel, and I’ll ping a developer if I don’t get responses either.
I found workaround for this problem ( per_page query does not work with since parameter ).
So, I don’t care they wouldn’t reply me.
The workaround is to use before query to iterative fetching as below.
Firstly, get initial result with since query.
Secondly, look the newest post in initial result and if it is not newer than specified date, use the ID as before query and request again.
Perhaps It may work.
If it does not work, I’ll post here again.