Hello again!
My question is about fair API usage. My app objetctive is to show the next International space station (ISS) pass. As I can retrieve the next passes, i want to do the http request only after the next pass. But I don’t know how I should implement it, since I can’t really understand how Tidbyt servers will call my app.
For example, when my app starts, it dees a request via API and lets imagine it says the next ISS pass is tomorrow at 21:00. I want my app to only do the next request at 21:01, so it don’t consume too much API calls and resources.
My question is not properly about coding, but to understand how tidbyt servers run the app. Of course, any help with examples is great.
My other solution is to call the request every 90 minutes (using ttl_seconds = 5400), cause is the least time possible between each ISS pass.