If I have a app in which the user can set remainders for when there is a new article in a blog, and we can find out if there is a new article in the blog by sending an API request. How should I make the app to continuously send requests to the API? Is there another way to do this or should we just keep sending requests to API continuously, and if so in how much time interval should we send it?
In this case delegating the check for updates to some sort of server side would be ideal. The server side logic could send push notifications to your clients.