Questions tagged [auto-renewing]

175 questions
2
votes
1 answer

What action should be taken when a user enters billing retry in iOS subscriptions?

How should a user which enters is_in_billing_retry_period be treated? Will Apple force the user to pay, and therefore I shouldn't suspend the service? Or should I suspend the service until the user has payed? There's conflicting information…
2
votes
1 answer

Auto-Renewing subscription purchase_date and expires_date are equal

I'm trying to implement In-AppPurchaceses(Auto-Renewing) for the first time. I'm trying to verify receipt with itunes.apple.com/verifyReceipt. But in the response 'purchase_date_ms' and 'expires_date_ms' are equal, I mean 'purchase_date_ms' is…
gamal
  • 1,587
  • 2
  • 21
  • 43
2
votes
2 answers

Auto-Renewal Subscription (In-App Purchase - Server)

I have a doubt with Auto-renewal subscription (In-App purchase). I need to keep the subscription on my server (with it’s own account management, login/registration), because the user can move to another device (or platform). Suppose the following…
2
votes
1 answer

Does iOS In-App-Purchase cancellation reflect on NSBundle.mainBundle().appStoreReceiptURL

Let's say an iOS user purchases an auto renewal subscription. I am aware that NSBundle.mainBundle().appStoreReceiptURL shows some kind of digital receipt I can use to verify the purchase and the continuation of the subscription. Then after some…
shle2821
  • 1,856
  • 1
  • 19
  • 26
2
votes
1 answer

Apple In App Purchase - How to fetch a product's subscription duration from the app store?

Can anyone tell me how to get an IAP subscription length? I have an app. I have defined a Auto Renewing Subscription product and I have defined 3 different subscription lengths for this product - 1 month, 6 months and 12 months. I am able to poll…
Ian Bradbury
  • 1,416
  • 11
  • 18
2
votes
0 answers

Auto Renewable subsctiption for In-App purchase objective-c

I have been searching a lot for a complete auto renewable subscription tutorial in iOS or a good explanation for the whole paradigm or the structure as to how it takes place. I haven't found a single blog or article that states the entire structure…
Patel Jigar
  • 2,141
  • 1
  • 23
  • 30
2
votes
1 answer

Check Auto-renewable InApp Purchase iOS

I am implementing Auto-renewable InApp Purchase for iOS. It is working fine for first month. But I am unable to know whether user's subscription is auto renewed or not means what is the status of current InApp Purchase. After studying so many…
2
votes
0 answers

How to implement auto renewal subscription for in app purchase?

I am completely new to In App Purchases and need to implement a subscription based IAP to grant user access to my app on login. My app contains two types of users: Regular user Business user In my business user table, I plan to have a column for…
user2363025
  • 6,365
  • 19
  • 48
  • 89
2
votes
1 answer

Having problems with auto renewable subscription in app purchase in ios

I am having an app in which I am implementing Auto Renewable Subscription In App Purchase. I am following this link link With that, I am getting the alert successfully to purchase but when I press it again, it asks me every time to purchase. There…
Manthan
  • 3,856
  • 1
  • 27
  • 58
2
votes
1 answer

iOS In-App Purchase: Managing auto-renewing subscriptions

I'm currently working on incorporating in-app purchases into an iOS application. The primary offering will be auto-renewing-subscription based. My question concerns subscription management. It is not possible (AFAIK) to manage AR subscriptions in…
jstevenco
  • 2,913
  • 2
  • 25
  • 36
2
votes
1 answer

Problems with iOS auto-renewable subscription was published in appstore without having a shared secret in place

I hope someone can help me with this one: Recently I was asked to fix an app that had a problem handling it's autorenewable subscriptions. Users where complaining that they could not access the content after their subscription was renewed. When I…
Wasserfloh
  • 196
  • 3
  • 6
2
votes
1 answer

iOS: How to find the latest auto-renew/purchase info from the in-app purchase receipt

I implemented the auto-renew subscription in my iOS app. Once the purchase was done then am passing the receipt data to my own server and on my server am passing that encoded receipt data to iTunes server and get the valid json response with bunch…
loganathan
  • 2,056
  • 2
  • 23
  • 34
2
votes
0 answers

Testing Renewal of Subscription android

How to test auto renewal of subscriptions in android. I don't want to wait for a month to test it. Is there any way around like in iOS where we can simulate it to renew after 24 hours. May I know what is the correct way to achieve my objective?
2
votes
1 answer

QuickBlox IOS session expired renew

This question has multiple facets which regards an application that has a login, along with instant messaging i.e. QBChat. All of these questions kind of relate. 1) When a user logs in, I create a session, login the QBUser in, and log in the QBUSer…
EK_AllDay
  • 1,095
  • 2
  • 15
  • 35
2
votes
1 answer

How to know auto renewable Product renews in sandbox mode

I am using using in App purchase in my app. In sandbox mode validity of product reduced http://dev-ios.blogspot.in/2011/05/validity-time-auto-renewables-in.html So how can I check whether the product is renewed or not? and renewed according to…