Programming access to Android Market

简介:

如果你在Android Market上发布了程序,怎么通过程序访问,查看程序的信息呢?谷歌大神为我们提供了--An open-source API for the Android Market,另外,也给Ruby和PHP都留了接口,当然了访问是需要Google帐户滴,更多信息请看考:http://code.google.com/p/android-market-api/

OK,废话少说,That's it!

Current progress

  • You can browse market with any carrier or locale you want.
  • Search for apps using keywords or package name.
  • Retrieve an app info using an app ID.
  • Retrieve comments using an app ID.
  • Get PNG screenshots and icon

Requirement:

需要把这两个JAR导入项目中,由于很好理解,代码就不加注释了 :-)

HowToSearchApps  :

You can search by package using :


  
  
  1. String query = "pname:<package>"

By developper name :


  
  
  1. String query = "pub:<name>"

  
  
  1. String query = "pname:com.luckyxmobile.timers4me";// 通过包名查找程序
  2. MarketSession session = new MarketSession();  
  3. session.login("your gmail account""your password");  
  4. AppsRequest appsRequest = AppsRequest.newBuilder().setQuery(query).setStartIndex(0).setEntriesCount(10).setWithExtendedInfo(true).build();  
  5. session.append(appsRequest, new MarketSession.Callback<AppsResponse>() {  
  6. @Override 
  7. public void onResult(ResponseContext context, AppsResponse response) {  
  8. TextView text = (TextView) findViewById(R.id.text);  
  9. String id = response.getApp(0).getId();  
  10. String creatorID = response.getApp(0).getCreatorId();  
  11. String creator = response.getApp(0).getCreator();  
  12. String packageName = response.getApp(0).getPackageName();  
  13. String price = response.getApp(0).getPrice();  
  14. String rating = response.getApp(0).getRating();  
  15. int ratingCount = response.getApp(0).getRatingsCount();  
  16. String title = response.getApp(0).getTitle();  
  17. String version = response.getApp(0).getVersion();  
  18. int versionCode = response.getApp(0).getVersionCode();  
  19. int serializedSize = response.getApp(0).getSerializedSize();  
  20. ExtendedInfo extendedInfo = response.getApp(0).getExtendedInfo();  
  21. text.setText("id:" + id + "\nCreatorId:" + creatorID  
  22. "\nCreator:" + creator + "\nPackageName:"+ packageName + "\nPrice:" + price + "\nrating:"+ rating + "\nRatingCount:" + ratingCount + "\ntitle:" 
  23. + title + "\nVersion:" + version + "\nversionCode:" 
  24. + versionCode + "\nDownloadsCount:" 
  25. + extendedInfo.getDownloadsCount()  
  26. "\nDownloadsCountText:"+extendedInfo.getDownloadsCountText()+ "\nInstallSize:" + extendedInfo.getInstallSize()  
  27. "\nSerializedSize:" + serializedSize+ "\nDecription:" + extendedInfo.getDescription()+ "\nContactEmail:" + extendedInfo.getContactEmail()+ "\nContactPhone:" + extendedInfo.getContactPhone()+ "\nContactWebsite:" 
  28. + extendedInfo.getContactWebsite());  
  29.             }  
  30.         });  
  31. session.flush();//发送并刷新 

 这是Timers4Me的运行结果:

breezy

HowToGetAppComments:


  
  
  1. CommentsRequest commentsRequest = CommentsRequest.newBuilder().setAppId("7065399193137006744").setStartIndex(0).setEntriesCount(10).build();session.append(commentsRequest, new Callback<CommentsResponse>() {    
  2. @Override public void onResult(ResponseContext context, CommentsResponse response) {        
  3. System.out.println("Response : " + response);  
  4. // response.getComments(0).getAuthorName()      
  5. // response.getComments(0).getCreationTime()    
  6. // ...   
  7.     } });    
  8. session.flush();   

HowToGetAppScreenshot   :


  
  
  1. GetImageRequest imgReq = GetImageRequest.newBuilder().setAppId("-7934792861962808905").setImageUsage(AppImageUsage.SCREENSHOT).setImageId("1").build();       
  2. session.append(imgReq, new Callback<GetImageResponse>() {   
  3. @Override public void onResult(ResponseContext context, GetImageResponse response) {      
  4. try {                        
  5. FileOutputStream fos = new FileOutputStream("icon.png");      
  6. fos.write(response.getImageData().toByteArray());      
  7. fos.close();                           
  8. catch(Exception ex) {      
  9. ex.printStackTrace();     
  10. }}});   
  11. session.flush();  

以上只是抛砖引玉,更多精彩,只有动手才能看到,good luck!










本文转自 breezy_yuan 51CTO博客,原文链接:http://blog.51cto.com/lbrant/431834,如需转载请自行联系原作者
目录
相关文章
|
XML Android开发 数据格式
android google market 不能搜索到facebook或显示不兼容
android google market 不能搜索到facebook或显示不兼容
184 0
|
Android开发 Java
进入 android market 网页 或是应用
引用:http://blog.csdn.net/feng88724/article/details/6606464 在实际需求,有可能会有给应用评价这样的功能,通常这样的功能都会跳转到Android Market来让用户评论。
693 0
|
Android开发 Windows Go
如何在G1上安装非android market的apk
Here we share to you T-Mobile G1 tips and tricks, how to install apk file.
937 0
|
JavaScript Android开发 前端开发
Google 菜市场(Android Market)上不去的解决方法
    最近几天,突然手机(我的是G3,估计其他android手机也有类似的情况)上不了android market了,甚至连gmail也出现网络问题(通过gprs、3g和wifi都不好使)。
894 0
|
7天前
|
开发框架 前端开发 Android开发
安卓与iOS开发中的跨平台策略
在移动应用开发的战场上,安卓和iOS两大阵营各据一方。随着技术的演进,跨平台开发框架成为开发者的新宠,旨在实现一次编码、多平台部署的梦想。本文将探讨跨平台开发的优势与挑战,并分享实用的开发技巧,帮助开发者在安卓和iOS的世界中游刃有余。
|
12天前
|
搜索推荐 Android开发 开发者
探索安卓开发中的自定义视图:打造个性化UI组件
【10月更文挑战第39天】在安卓开发的世界中,自定义视图是实现独特界面设计的关键。本文将引导你理解自定义视图的概念、创建流程,以及如何通过它们增强应用的用户体验。我们将从基础出发,逐步深入,最终让你能够自信地设计和实现专属的UI组件。
下一篇
无影云桌面