如何让谷歌Play商店的信息在我的Andr​​oid应用程序?

问题描述:

是否有谷歌Play商店中获取任何API应用程序名称,描述,图标,下载,ratting ??

Is there any API for Google play store for getting application name, description, icon, downloads, ratting ??

我发现这一个但它的Ruby语言code。无法找到任何Android的样本。

I found this one but its an Ruby language code. cant find any android sample.

请帮忙对此。

我不知道有任何谷歌Play商店的API专为Android平台(或与此有关的任何平台)。谷歌肯定不会有官方对于一个API。但 Andlytics 时,一个最它的流行的应用程序是一种在谷歌Play商店也是一个开源应用程序。

I am not aware of any Google Play Store API specifically for the Android platform (or any platform for that matter). Google certainly does not officially have an API for that. But Andlytics, one of the most popular apps of it's kind on the Google Play Store is also an Open Source application.

它可以在github在这里: Andlytics 。这应该是让你开始有帮助的。我认为它适用于废弃的数据。单纯的炒作对我而言这个课程。

It is available on github here: Andlytics. This should be helpful getting you started. I think it works on scrapping data. Mere speculation on my part about this of course.

更新:

一个重新看向链路由OP揭示该库是已经在   Java语言。

A re-look to the link by the OP reveals that the library is already in Java.

从网页上的报价:   的https://$c$c.google.com/p/android-市场API / 这是不是一个官方   API。我不afiliated以任何方式,以谷歌。

A quote from the webpage: https://code.google.com/p/android-market-api/ This is not an official api. I'm not afiliated to google in any way.

该库允许你直接问谷歌的官方Android   市场服务器的信息,搜索应用程序,...

This library allow you to ask directly google's official android market servers for information, search for apps, ...

主要目标是java的,但它可以很容易地适应其他语言   因为它是谷歌protobuf的基础。

Main target is java but it can be easily adapted to other languages since it's Google ProtoBuf based.

目前是jberkel一个Ruby口在这里和这里splitfeed一个PHP端口。   这也是在该库由Raunak古普塔在此之上的履带。

There is a Ruby port by jberkel here and a PHP port by splitfeed here. These is also a crawler on top of this library by Raunak Gupta here.

这是一个链接到它的源代码:https://$c$c.google.com/p/android-market-api/source/browse/#svn%2Ftrunk%2FAndroidMarketApi%2Fsrc%2Fcom%2Fgc%2Fandroid%2Fmarket%2Fapi

And this is a link to it's source: https://code.google.com/p/android-market-api/source/browse/#svn%2Ftrunk%2FAndroidMarketApi%2Fsrc%2Fcom%2Fgc%2Fandroid%2Fmarket%2Fapi

或许,也可以是,不知何故,在Android应用程序中使用了。

Perhaps, it can be, somehow, used in an Android app too.

希望它帮助。 ; - )

Hope it helps. ;-)