Replay a HTTP Archive file as close as possible to the request section. If request is successful, store it.
- Open google chrome
- Open developer console
- Load page you'd like to pluck something from
- Right-click on the item in the Network tab and click "Save Entry as HAR"
- Run this
pluck-har.pl THENAMEOFTHEHARFILE.har
- Enjoy your downloads
We have no control over any session information (ala IP or time) stored on the remote system. Some sites expire fast. Something like this might work to pluck things quickly from an expected path.
while (sleep 1); do echo Looking...; find . -name '*.har' -exec perl pluck_har.pl {} ;; done