auto-renewing

When is appropriate to use Auto-Renewable Subscriptions - iOS

僤鯓⒐⒋嵵緔 提交于 2019-12-25 08:47:14
问题 I am developing he application which delivers audio clips as channel basis media over http streaming. I am planing to use Auto-Renewable Subscriptions in the app and they are renewing on monhly basis as we are updating the contents(Audio clips) of the channel frequently. I was going through the Apple policy for auto renwing subscription which is, Definition Auto-renewable subscriptions allow users to purchase dynamic content, such as magazine subscriptions, for a set duration of time.

How to get expiry date for Subscription with client side in Android?

别说谁变了你拦得住时间么 提交于 2019-12-21 02:01:11
问题 We are implementing the subscription using in-app purchase in android, We are getting the purchase timestamp like the below format '{ "orderId":"GPA.1234-5678-9012-34567", "packageName":"com.example.app", "productId":"exampleSku", "purchaseTime":1345678900000, "purchaseState":0, "developerPayload":"bGoa+V7g/yqDXvKRqq+JTFn4uQZbPiQJo4pf9RzJ", "purchaseToken":"opaque-token-up-to-1000-characters" }' But We need to display the expiry date in application UI and we wanna get the exact expiry date

How to get expiry date for Subscription with client side in Android?

微笑、不失礼 提交于 2019-12-21 02:01:05
问题 We are implementing the subscription using in-app purchase in android, We are getting the purchase timestamp like the below format '{ "orderId":"GPA.1234-5678-9012-34567", "packageName":"com.example.app", "productId":"exampleSku", "purchaseTime":1345678900000, "purchaseState":0, "developerPayload":"bGoa+V7g/yqDXvKRqq+JTFn4uQZbPiQJo4pf9RzJ", "purchaseToken":"opaque-token-up-to-1000-characters" }' But We need to display the expiry date in application UI and we wanna get the exact expiry date

Preventing Trial Period Fraudulent in iOS In App purchases

感情迁移 提交于 2019-12-20 06:19:19
问题 We have a app with a auto renewable IAP for which we offer a initial trial period to the user and charge once the trial period has expired. Our app maintains user account management(user login) and all features (including the IAP) are accessible only when the user is logged in. There are two scenarios to consider: Case 1: A new user(app user) opts to purchase the subscription for trial period on a device where she's logged in with her apple id. She later(post expiry of the trial period)

Is restore button necessary for Auto-renewable subscriptions?

旧街凉风 提交于 2019-12-19 04:45:28
问题 Exactly the same question as this one: I understand that restore button is necessary so when user upgrades the phone, the user is able to get back the contents/services subscribed earlier. In our application we require users to login. Once they login, they have to subscribe to use the services of the application. From user's credentials we are keeping track that which users are still subscribed to our application. So when user changes the phone and logs in with his/her credentials there is no

Refresh data and exit with saving Macro Excel

拥有回忆 提交于 2019-12-13 04:59:41
问题 I need to refresh the data from ole db source while opens excel and afte that saves and exit. Here is my macro code: Sub auto_open() Call DataRefresh End Sub Sub DataRefresh() TimeToRun = Now Application.OnTime TimeToRun, "Refresh" End Sub Sub Refresh() ActiveWorkbook.Connections("Shas").Refresh End Sub Sub auto_close() Application.OnTime TimeToRun, "Refresh", , True Application.Quit ThisWoorkbook.Close SaveChanges:=True End Sub It's okay with renewing after openening but it doesnt exit. What

Multiple receipt count for restoreCompletedTransaction inapp purchasing

浪子不回头ぞ 提交于 2019-12-11 12:57:35
问题 I have an autorenewable subscription. When the app is installed on a new device, Apple returns ALL previous purchase receipts, in this case since it is sandbox I get 6 receipts every time I install. The observer then sends the queue for restoredCompleted transactions. I have a method to send the transaction to my server for Apple verification, but it runs 6 times because of the 6 receipts. I really only want to deal with the LAST receipt sent. So I am trying to count the transactions in the

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

六眼飞鱼酱① 提交于 2019-12-10 09:44:54
问题 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 回答1: 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)

Delivery of auto-renewing subscriptions for iOS

喜夏-厌秋 提交于 2019-12-09 07:16:26
问题 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

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

纵然是瞬间 提交于 2019-12-08 07:02:45
问题 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