Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In Android in app billing is it possible to somehow query (price) information for all products using one query? Optimally you could pass in the product IDs and it would return information for those.

What I'm looking for is the SKProductsRequest equivalent for Android Market. http://developer.apple.com/library/ios/#documentation/StoreKit/Reference/SKProductsRequest/Reference/Reference.html#//apple_ref/occ/cl/SKProductsRequest

share|improve this question

3 Answers

up vote 6 down vote accepted
+50

It is possible now with Billing API v3. You can get information with getSkuDetails() method. Example is here.

ArrayList skuList = new ArrayList();
skuList.add("premiumUpgrade"); 
skuList.add("gas");
Bundle querySkus = new Bundle();
querySkus.putStringArrayList(“ITEM_ID_LIST”, skuList);

Bundle skuDetails = mService.getSkuDetails(3, getPackageName(), “inapp”, querySkus);

int response = skuDetails.getInt("RESPONSE_CODE");
if (response == 0) {
    ArrayList responseList = skuDetails.getStringArrayList("DETAILS_LIST");

    for (String thisResponse : responseList) {
        JSONObject object = new JSONObject(thisResponse);
        String sku = object.getString("productId");
        String price = object.getString("price");
        if (sku.equals(“premiumUpgrade”)) {
            mPremiumUpgradePrice = price;
        } else if (sku.equals(“gas”)) { 
            mGasPrice = price;
        }
    }
}
share|improve this answer
Thank u so much for the post, it works! But I have a question: does getSkuDetails() return the localized currency, or the developer's set of default price, which is in U.S. dollars? It seems to me, it only returns U.S. dollar, regardless I have set my system and google play account to be France. Do you know where would this be documented? I could not seem to find sufficient docs for this. – sammiwei Apr 3 at 0:29
@sammiwei Sorry, I don't know. – Sergey Glotov Apr 3 at 7:38

Are you sure you can get that info through the In-app Billing API for even a single item? I don't see an SKProductsRequest equivalent in Google's docs.

share|improve this answer
  1. Create a NSSet/NSMutableSet with all the product IDs you want to get information for.
  2. SKProductsRequest *req=[[SKProductsRequest alloc] initWithProductIdentifiers:<The set you have from step1>];
        [req setDelegate:self];
        [req start];
        [req release];
    
  3. In Product Request did receive response

    (void) productsRequest:(SKProductsRequest *)request didReceiveResponse:(SKProductsResponse *)response
    {
        for (NSString *inv in response.invalidProductIdentifiers) 
        {
            NSLog(@"Invalid product: %@",inv);
    
            [mScsProductsList removeObjectForKey:inv];
            [mSubProductsList removeObjectForKey:inv];
            [mInvalidProductsList addObject:inv];
        }       
    
        for (SKProduct *prod in response.products) 
        {
            NSLog(@"Valid product: %@",prod.productIdentifier);
            // Add the products listing here to your final SKProducts list.
        }
    }
    
  4. Use them to display info to the user.

share|improve this answer
4  
Did you realize I asked this for the Android and Android market? :) – randomguy Jun 2 '11 at 6:44
1  
ObjectiveC in Android!!! Funny... – AndroidKid Jun 3 '11 at 8:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.