我试图建立一个基于php的应用统计系统,该系统会在google play商店中运行搜索查询,并且会根据排名返回每个关键字。
例如:
keyword:Notes Lock
appid:net.newsoftwares.noteslock
等级:#1
通过google play的搜索功能上的简单搜索查询返回。
SensorTower.com为关键字排名提供相同的功能,我不知道他们是如何完成的。
我已尝试过以下
Apptweak api:搜索查询只提供20条结果,我需要250
42matters api:结果来自他们自己的数据库而不是google play搜索功能
file_get_contents()
:从Play商店中获取查询网址
我尝试使用PHP:
$result = file_get_content( "https://play.google.com/store/search?q=football" );
// its only returns 20 app results, I want to get 250 results,..
Playstore在查询结果中仅显示20个应用程序,仅在滚动时显示更多应用程序。
有人有任何想法吗?
目标:使用php从此查询中检索250个结果: https://play.google.com/store/search?q=football