Skip to main content

Android

This method is used to acquire product information. The product information should be loaded before displaying product page.

Market.getInstance().getProductsInfo(itemType, skuList, new OnQueryProductListener() {
@Override
public void onSuccess(List<Product> productInfo) {
}

@Override
public void onError(int resultCode) {

}
});

Parameters:

  • itemType: SKU types, including INAPP and SUBS.
  • skuList : Collection of SKU IDs. Return: When the request is successful, the collection of Products will be returned through the onSuccess method.

Next Steps

Making Purchases