Google Play Apk Downloader

自家开发了个应用,放到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 = '';
preg_match("/($preg)/", $html, $downloadLink);
$link = $downloadLink[2];
file_put_contents('aaa.apk', file_get_contents($link));

你可能感兴趣的:(其他,google,play,应用,apk)