php - Google Play scrapper -
i'm trying develop play store reviews scraper in php , need make post request url https://play.google.com/store/getreviews, , saw parameter post firebug.
i using goutte library , here code:
require_once 'goutte.phar'; use goutte\client; $client = new client(); $params = array( "id" => "com.trello", "pagenum" => 2 , "reviewsortorder" => 2 , "reviewtype" => 0, "xhr" => 1 ); $crawler = $client->request('post' , 'https://play.google.com/store/getreviews', $params); the problem request returns nothing. there faced problem , solved it?
i don't think possible. google play changed review interface last year. have "token" parameter missing here. have worked before try , work out seeds (see google play review scraping changes) can't figure out. after number of attempts hit webservice incorrect request (presumably without token) google play starts blocking ip, that's why you'll getting nothing after while (and won't able open google play in browser either). if find solution, let me know!
Comments
Post a Comment