I have encountered one little problem. I have no idea how to harvest data from website that are result of some function or something. I know only Java, no idea how this other stuff works so idk how, or even if is it possible.
Thing is, this one website don't show text I'm interested in as text but rather take that text and put it into image as .png.
I would like to save this image or do something with it but I don't know how to save/access/take/work_with/point_bot_on it since it is not stored there as image but as some action.
This is problematic line:
<img src="https://www.example.com/create-image.php?width=290&text=sufPX6l9UqgWD9nYUKgofAoj1sIkTrOoniENZWApbZ0=" alt="">
See that "/create-image.php"? Is there way I could still get that image, considering I'm using Jsoup? Or perhaps, decipher/de-hash/de-something text part?
I've tried various online tools to try to make that text part text but without result. And I have tried to get that img by just copying URL and then tried to visit it and get it from there, not original website ...as well without result.
When I move cursor over that line in browser's inspector I see this image but I'm not into doing it manually :D :)
I would like to ask, how would you get to this image?
Thanks :))