我有以下代码:
<?php
$ids = 'ids=com.hugogames.hugotrollwars';
$opts = array('http' =>
array(
'method' => 'POST',
'header' => 'Content-type: application/x-www-form-urlencoded',
'content' => $ids
)
);
$context = stream_context_create($opts);
$result = file_get_contents('https://play.google.com/store/xhr/getdoc', false,
$context);
$convert = explode("\n", $result);
基本上它从Playstore中提取权限并将其显示为字符串。我遇到的问题是删除不需要的数据(图像链接,描述),只显示权限和权限说明。我尝试使用php的json_decode函数,它返回NULL。
有什么我想念的吗?
非常感谢任何帮助!
答案 0 :(得分:2)
$ result无效json。 Google Play API正在使用protobuf变体。
http://www.segmentationfault.fr/publications/reversing-google-play-and-micro-protobuf-applications/
还有一些php库可以与google play进行对话。