Package com.akdeniz.googleplaycrawler.GooglePlay

Examples of com.akdeniz.googleplaycrawler.GooglePlay.BuyResponse


     * Downloads given application package name, version and offer type. Version
     * code and offer type can be fetch by <code>details</code> interface.
     **/
    public InputStream download(String packageName, int versionCode, int offerType) throws IOException {

  BuyResponse buyResponse = purchase(packageName, versionCode, offerType);

  AndroidAppDeliveryData appDeliveryData = buyResponse.getPurchaseStatusResponse().getAppDeliveryData();

  String downloadUrl = appDeliveryData.getDownloadUrl();
  HttpCookie downloadAuthCookie = appDeliveryData.getDownloadAuthCookie(0);

  return executeDownload(downloadUrl, downloadAuthCookie.getName() + "=" + downloadAuthCookie.getValue());
View Full Code Here

TOP

Related Classes of com.akdeniz.googleplaycrawler.GooglePlay.BuyResponse

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.