We created one subscription product with reference name plus_1_month, as part of subscription group super_users
Now we try to fetch this product using flutter https://pub.dev/packages/in_app_purchase
const Set _kIds = {'1_month'}; final ProductDetailsResponse response = await InAppPurchase.instance.queryProductDetails(_kIds);
but response is product not found.
Have some questions here:
- What is my inapppurchase identifier ? there is one field reference_name another product_id (mentioning is used for reporting only)
- How can we even test in app purchases if first the product needs review ? (we see missing metadata message and requiring screenshoots and review information... which we cannot have as cannot develop now due to not having any test product being able to get fetched)
Screenshoot below shows the status... How can we test or implement this if first required screenshoots and reviews. Got stuck in implementing app purchases since 2 weeks
I even tried getting all id reference_name combinations still no luck...
For the moment have no idea how to implement the inapppurchase for ios