It's the first time I am developing an ios app and my first experience with appstore. I want to implement a monthly subscription in my app
I tried the code here:
www.b4x.com
I get a red line in the logs saying: Product not found: all_access_one_month
it seems to come after this line
I have a single subscription in the app (all_access_one_month) and it is selected in the screen with the app build where it says 'Add for review'
I do not understand if I have to send the app for review before testing subscriptions or if there are other requirements. What am I missing? The information about this is confusing to say the least, although in app purchases is a crucial aspect of development.
I tried the code here:
Verify receipts for "Auto-renewable subscriptions"
For a current project, it was necessary to verify "Auto-renewable subscription" purchases in the Apple App Store. Since the available information on this was very extensive and often confusing, below is the variant that works for me. Maybe it saves others a time-consuming odyssey through...

I get a red line in the logs saying: Product not found: all_access_one_month
it seems to come after this line
B4X:
istore.RequestProductsInformation(ProdIds)
I have a single subscription in the app (all_access_one_month) and it is selected in the screen with the app build where it says 'Add for review'
I do not understand if I have to send the app for review before testing subscriptions or if there are other requirements. What am I missing? The information about this is confusing to say the least, although in app purchases is a crucial aspect of development.