If the request is identical, it is possible that you get a response from the cache.
Solution 1:
You can try to use a unique query each time by adding, for example, a timestamp.
Solution 2 (not every server will accept - it depends on the server settings):
You can set header parameters for your request, for example:
'If-Modified-Since' = 'Mon, 26 Jul 1997 05:00:00 GMT' 'Cache-Control' = 'no-cache' 'Pragma' = 'no-cache'
Solution 3:
Play with the server configuration :)
xboomx
source share