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

link|improve this question

72% accept rate
feedback

3 Answers

up vote 4 down vote accepted
+50

AFAIK you can't retrieve any information about in-app products. I guess it is done for security reasons.

link|improve this answer
feedback

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: http://developer.android.com/guide/market/billing/index.html.

link|improve this answer
feedback
  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.

link|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
feedback

Your Answer

 
or
required, but never shown

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