auto-renewing

Refund the previously purchased non-renewing subscription, not the current one. Possible?

限于喜欢 提交于 2019-12-07 03:09:27
问题 I'm implementing an iOS app with non-renewing subscription. Not much relevant information was available online; so I seek your guidance. A use case which worries me the most is when a user purchased the subscription once and then immediately after purchase it again to extend the duration of service (see such scenario here). What if that user were to refund the first purchase, leaving the second one intact? Is this even possible in practice, or am I just too paranoid? Assuming the above case

How do you determine the customer/user when receiving an Apple statusUpdateNotification for auto renewing subscriptions?

孤街醉人 提交于 2019-12-06 16:04:49
So, Apple has implemented their server to server notification for various events in the subscription lifecycle. I was very excited to get going on this but then it seems there is some sort of glaring thing I'm missing. I'm not sure how to match the notification data to a user on my side. I'm surprised there isn't a uid/apple id passed with the notification to match on. Maybe I'm supposed to be using the original_transaction_id but its unclear whether that is unique. Does anyone know what to use in the status response? I use the original_transaction_id to match the event to a user. Apple will

How Do I know that auto Renewalbe subscription is cancelled or not?

时光怂恿深爱的人放手 提交于 2019-12-05 18:59:34
I am implementing In App purchases in my app ,with auto renewable subscription , Now i am confusing that how i know that when the user is cancelled auto-renewable subscription or not When user purchase any subscription using in app purchase, apple provide a Receipt for each purchase or transaction. Now you can anytime verify the subscription of user using this receipt. When you will pass this receipt to apple server it will provide you with the user current subscription (if available) along with the current receipt also. For learning more about receipt validation go through this apple link .

Delivery of auto-renewing subscriptions for iOS

无人久伴 提交于 2019-12-03 09:10:55
I am finding that the renewal of an expired auto-renewing subscription is never being delivered while the application is active and running, but rather when the application is woken up from background or on launch. In other words if you are using the app, and the subscription expires, it won't be delivered to the app (assuming it is auto-renewing and valid etc) while the user continues to use the app. This behaviour does not seem to be documented by Apple, can anyone else with experience of this confirm or otherwise? Obviously one can detect that the sub has expired and then offer the user the

Trouble receiving notifications from iTunes Connect about IAP status change events

时间秒杀一切 提交于 2019-12-02 03:25:50
问题 I've set up a URL on my server to receive auto-renewable IAP status change notifications per this article: https://help.apple.com/itunes-connect/developer/#/dev0067a330b And of course I've provided my URL to iTunes Connect via my app's main settings page. However, I'm receiving neither update notifications nor any kind of message indicating that there's a problem. Help troubleshooting? I don't even know where to start. Thanks! 回答1: Have you checked secure network connection with your server?

Trouble receiving notifications from iTunes Connect about IAP status change events

自闭症网瘾萝莉.ら 提交于 2019-12-02 02:04:56
I've set up a URL on my server to receive auto-renewable IAP status change notifications per this article: https://help.apple.com/itunes-connect/developer/#/dev0067a330b And of course I've provided my URL to iTunes Connect via my app's main settings page. However, I'm receiving neither update notifications nor any kind of message indicating that there's a problem. Help troubleshooting? I don't even know where to start. Thanks! Have you checked secure network connection with your server? I mean that you have to check ATS on your server. I'm using nginx such as proxy server. First of all, you

iOS sandbox environment auto-renewal subscription

为君一笑 提交于 2019-11-30 10:16:46
问题 I have the following questions regarding iOS auto-renewable subscriptions a) Are auto-renewal subscriptions really auto-renewing in the sandbox environment? The problem seems to be that subscriptions are not renewed automatically although the documentation says that even in sandbox environment it should happen 6 times. b) Do we need to call restoreCompletedTransactions to get new receipt for automatically extended subscription, or is -paymentQueue:updatedTransactions: method called

iOS sandbox environment auto-renewal subscription

跟風遠走 提交于 2019-11-29 19:38:50
I have the following questions regarding iOS auto-renewable subscriptions a) Are auto-renewal subscriptions really auto-renewing in the sandbox environment? The problem seems to be that subscriptions are not renewed automatically although the documentation says that even in sandbox environment it should happen 6 times. b) Do we need to call restoreCompletedTransactions to get new receipt for automatically extended subscription, or is -paymentQueue:updatedTransactions: method called automatically by iOS? (I guess it automatically called on 'launch' & 'rotation out of background' not sure) c)

Auto-renewable subscription in ios7

|▌冷眼眸甩不掉的悲伤 提交于 2019-11-26 08:32:57
问题 I know it has been asked many times but none of the questions are helping me and I am not sure which of these answers are still valid in iOS 7. I am doing some app with Auto-Renewing subscription. I have successfully created my product and I can buy it with test users. My question is: What is the right way to check if a particular user still has access to this product? And how to test if auto-renewing is working well? (Since I read that in sandbox auto-renewing does not work as real iStore).