A bit background: I have an Express server backend. In it, I make an axios request to fetch Twitter timeline. It gets data from Twitter, then sends a JSON to the client side. The client side GETs it and displays it in the UI.
My problem is that the HTTP request only gets fired upon deployment of the app on Heroku. When I post a new tweet, the client side doesn’t show this new tweet. Only when I re-deploy the app, the new tweet shows up.
Why is this?