Hello. I need to build for school a scrapper for this website: ro.indeed.com in order to gather data about all jobs from the current day, in the IT domain.
For this, if I choose these filters on the page (domain=IT, sort=last 24 hours), then the following URL is obtained: default URL + ?q=it&sort=date
The problem is that when I make request to this URL in my application as follows:
Jsoup.connect(resourceURL).get();
I do not receive this document with the filtered announces, that is showed in browser, I checked this at console, printed with System.out.println() and are stated altogether other announces ...
Does anyone know where am I wrong? Why when I request the document at that URL I do not receive what is in it?
Thank to anybody who bothers to read my post, and especially who knows the answer!