Hi i am developing an app that will fetch one qoute from my server everyday and will do a local notification in that app and more when you get inside the app. I started by implementing Push Notification but then i figured that Local Notifications is what i need.
Official Documentation
For example, applications that depend on servers for messages or data can poll their servers for incoming items while running in the background; if a message is ready to view or an update is ready to download, they can then present a local notification immediately to inform their users.
The work flow of my app is that i need the app to make a post request to get today's quote and fire a local notification for that (that's the hard part) then when user opens the app i think things are easy. Th issue here is that that request has to be made while my app is not running. I'm looking for some help on how to acheive that.. Thanks in advance