Reputation: 51
Web scrapers or harvesters are the software which fetches data from a website,
I will be highly grateful, if anybody can suggest those various software packages available in the market.
They must be able to harvest dynamically (like AJAX) built websites.
Upvotes: 0
Views: 407
Reputation: 21349
A web sucker is usually following hard links on a page (href
s) to get the next page to follow.
With ajax this is quite different. The content is sent to the client only on demand. As I do not know any web scraper with a really efficient way to specify parameters I would do my own tool for this. This would basically consist of forging my own requester and use it (plug-it) on the server's webservice.
You can do this in different languages as long as that one supports the http get/post requests.
To investigate the way to forge the request:
$.post("servicePath.php", {"your": "forgedRequest"},function(data){alert(data)})
Upvotes: 1