自家开发了个应用,放到Google Play 的应用市场上,想从商店直接下载到本地安装,网上找了个网站提供这种功能,基于这个网站自己写了个程序自动提取apk包。
$id = 'com.duowan.owbox';
$apkName = 'Overanalyze for Overwatch';
$url = "https://apkpure.com/{$apkName}/{$id}/download?from=details";
$html = file_get_contents($url);
$preg = '<a id="download_link".*?href="(.*?)">';
preg_match("/($preg)/", $html, $downloadLink);
$link = $downloadLink[2];
file_put_contents('aaa.apk', file_get_contents($link));
最后
以上就是霸气水壶最近收集整理的关于Google Play Apk Downloader的全部内容,更多相关Google内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复