How to scrape ajax calls in PHP

后端 未结 2 1959
野趣味
野趣味 2021-01-29 05:42

Please let me know is it possible to scrap some info after ajax loaded with PHP? I had only used SIMPLE_HTML_DOM for static pages.

Thanks for advice.

相关标签:
2条回答
  • 2021-01-29 06:11

    Scraping the entire site

    Scraping Dynamic content requires you to actually render the page. A PHP server-side scraper will just do a simple file_get_contents or similar. Most server based scrappers wont render the entire site and therefore don't load the dynamic content generated by the Ajax calls.

    Something like Selenium should do the trick. Quick google search found numerous examples on how to set it up. Here is one

    Scraping JUST the Ajax calls

    Though I wouldn't consider this scraping you can always examine an ajax call by using your browsers dev tools. In chrome while on the site hit F12 to open up the dev tools console.

    You should then see a window like the above. Hit the network tab and then hit chrome's refresh button. This will show every request made between you and the site. You can then filter out specific requests.

    For example if you are interested in Ajax calls you can select XHR

    You can then click on any of the listed items in the tabled section to get more information.

    File get content on AJAX call Depending on how robust the APIs are on these ajax calls you could do something like the following.

    <?php 
    $url = "http://www.example.com/test.php?ajax=call";
    $content = file_get_contents($url);
    ?>
    

    If the return is JSON then add

    $data = json_decode($content);
    

    However, you are going to have to do this for each AJAX request on a site. Beyond that you are going to have to use a solution similar to the ones presented [here].

    Finally you can also implement PhantomJS to render an entire site.

    Summary

    If all you want is the data returned by specific ajax calls you might be able to get them using file_get_contents. However, if you are trying to scrape the entire site that happens to also use AJAX to manipulate the document then you will NOT be able to use SIMPLE_HTML_DOM.

    0 讨论(0)
  • 2021-01-29 06:18

    Finally I worked around my problem. I just get a POST url with all parameters from ajax call and make the same request using SIMPLE_HTML_DOM class.

    0 讨论(0)
提交回复
热议问题