Why Consumable Product is purchased for multiple times? - ios

I have created consumable product for In App purchase in Appstore connect.Whenever I buy the items I am able to purchase Why it is not showing that the product is already purchased????

Related

We noticed that the different durations of your auto-renewable subscriptions were still created as separate in-app purchase products

i have create 3 different auto renew subscription of different duration in same subscription group.
Weekly,Monthly,Yearly within 1 subscription group.
App reject for below reason
Guideline 3.1.2 - Business - Payments - Subscriptions
We noticed that the different durations of your auto-renewable subscriptions were still created as separate in-app purchase products, rather than as different durations within the same subscription group.
Firstly i have Created 3 in app purchase products in 3 subscription group. So From apple store, They rejected my app with the reason "We noticed that the different durations of your auto-renewable subscriptions in saperate Group."
After that i have created 3 new In app purchase products in and used them in my app. But i haven't remove it from apple developer Console and submit my app for review.so again they reject app with the same reason "We noticed that the different durations of your auto-renewable subscriptions in saperate Group."
After that i remove old In app purchase products from apple developer console and submit old binary for review and App Approved.
so just create new in app purchase product with same subscription group rather than different group and Remove OLD in app purchase IDS from apple developer console.

Does Apple allow changing from Non-consumable IAP to Subscription? [duplicate]

I've had in-app purchase feature with non-consumable pricing in Apple Store. And the app has pricing to use it.
How to change non-consumable to auto-renewable subscriptions? Somehow keep user who purchased the app. And new user charge with auto-renewable subscriptions.
No you can't change it, just make sure in your App, you use
[[SKPaymentQueue defaultQueue]restoreCompletedTransactions];
Restore old purchase and check if you find that the user has purchased the non-consumable product (old users), restore the product for free. If user has not purchased that product before (new users), ask them to purchase the new auto-renewable subscriptions.

How to change non-consumable to auto-renewable subscriptions and keep old user?

I've had in-app purchase feature with non-consumable pricing in Apple Store. And the app has pricing to use it.
How to change non-consumable to auto-renewable subscriptions? Somehow keep user who purchased the app. And new user charge with auto-renewable subscriptions.
No you can't change it, just make sure in your App, you use
[[SKPaymentQueue defaultQueue]restoreCompletedTransactions];
Restore old purchase and check if you find that the user has purchased the non-consumable product (old users), restore the product for free. If user has not purchased that product before (new users), ask them to purchase the new auto-renewable subscriptions.

Allow multiple purchases of same in app purchase

Right now i'm allowing multiple in app purchases. 3 month subscription, etc. But i cannot get a renewable purchase because apple wont allow it. So currently when a user goes to buy another 3 month subscription it gives the message that they've already purchases this item and wont allow them to purchase it again. I figure this has something to do with the product id? Is there a way to allow this not to happen and purchase the same product with the same product id multiple times? Thanks for the help!
Your product is not a non consumable product it is Non-Renewing Subscriptions instead. For further detail check check this link and go to Types of In-App Purchases this section.

In-App Purchase status

I have a question. I had some in-app purchase products, all consumable. The Apple rejected the app, because some of that products should be non-renewing subscription products. So I created a new products as non-renewing subscription and status of that products is "Ready to Submit", so everything is ok, but 3 of my products must be consumable and when the Apple rejected the status of that products was "Developer Need Action", but when I changed some languages and price, the status changed to "Waiting for Review". Now when I want to upload a new binary I can only select the subscriptions products, there are not on the list my consumable products. When I select only subscription products and upload binary will Apple check also my consumable products and will they be available when Apple acceppt the app?
Greets

Resources