I have implemented fetching the latest questions with php:
https://api.stackexchange.com/2.2/questions?order=desc&sort=activity&tagged=wordpress&site=stackoverflow&filter=withbody
And then getting the answers for the specific questions id's. All of this process run in an hourly cron.
The problem if an answer was added to a specific question my script doesn't catch it.
How can I fetch the latest questions and answers, and in later requests still "catch" new answers ?
Thanks.