表示 进入内容 11
Displaying posts with tag: google play (reset)
抓取google play统计数据

抓取google play统计数据

官方没有接口。

https://github.com/tmurakam/googleplay_dev_scraper

需要ruby>1.9.2
yum 安装的都是1.8.x的,无奈。

翻了翻代码,感叹一下ruby模块的强大。

另:gp的统计更新时间为 12:00 am PST
也就是说和中国相差15个小时, 更新时间为中国时间下午15:00,这个和google adsense的数据更新时间是相同的。

PST – Pacific Standard Time
PST is 8 hours behind of Coordinated Universal Time (UTC)

Example location in PST
Los Angeles – This time zone offset is used during winter in this location

 
date_default_timezone_set('America/Los_Angeles');
 
$time = "2013-09-09 12:01 am";
 
$t = strtotime($time);
 
 
 
date_default_timezone_set('Asia/Shanghai');
print date("Y-m-d H:i:s", $t); // 2013-09-09 15:01:00
[获取更多]
表示 进入内容 11