php– 从Google PlayStore获取应用排名

php– 从Google PlayStore获取应用排名,第1张

概述如何获得GooglePlay商店(https://play.google.com/store/apps/collectionopselling_free)中应用的应用排名?有没有我可以在iTunes中使用的API,我可以用json格式获得结果,然后我可以解析并显示它?浏览了一个可以显示应用排名的网站http://www.appannie.com/.知道如何做到这一点?

如何获得Google Play商店(https://play.google.com/store/apps/collection/topselling_free)中应用的应用排名?

有没有我可以在iTunes中使用的API,我可以用Json格式获得结果,然后我可以解析并显示它?

浏览了一个可以显示应用排名的网站http://www.appannie.com/.知道如何做到这一点?

我正在编写一个PHP脚本来查询结果.目前使用以下代码,我可以获得单个应用程序详细信息:

$IDs = 'IDs=com.instagram.androID';$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/apps/collection/topselling_free', false,$context);$convert = explode("\n", $result);print_r($convert);

我在数组中取回结果.现在,我如何获得顶级免费/收费应用程序?

提前致谢

解决方法:

非官方API:

Play Store API is an unofficial version of Google Play Store which
will let you pullup applications from Google play store using18
different functions covering almost everything from Google store.

https://code.google.com/p/google-playstore-api/

Play Store API is an unofficial version of Google Play Store which
will let you pullup applications from Google play store using18
different functions covering almost everything from Google store.

https://github.com/thetutlage/Google-Play-Store-API

you may have your own androID app store.these simple classes are free
and help you to get all app data from Google play such as
name,permissions,price,screenshots and etc.

http://sourceforge.net/projects/googleplaystore/

Need to see up to date revIEws, ratings and rankings for products on
the Google Play Store in each country? Here it is! An easy to use web
service that retrIEves current application details from Google Play
Store. Just give it an application ID, that

https://www.mashape.com/maxcanna/google-play-store(付款)

官方API

仅用于您“拥有”的应用程序.

https://developers.google.com/android-publisher/libraries(单击“其他语言”按钮).

总结

以上是内存溢出为你收集整理的php – 从Google PlayStore获取应用排名全部内容,希望文章能够帮你解决php – 从Google PlayStore获取应用排名所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1117105.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-29
下一篇 2022-05-29

发表评论

登录后才能评论

评论列表(0条)

保存