I want to crawl the data of the following link with a Java program. The first page is no problem, but when I want to crawl the data of the next pages, there is the same source code as for page one. The information which I need stands in an array in a JSON which comes in a response of a get request. You can see the settings and the response in this picture.
This is the link for the page with the JSON.
I found posts like this: Get a JSON object from a HTTP response, but if I use the getContent() method I only get the content of the page, not the full HTTP Body.
I even tried the getEntity() method and many more things but non of them worked.
Most other posts read JSON from pages that include the JSON in the source code, like here.
Any ideas how i could get the full JSON or better just the array?
Appreciate your help, kind regards.