Ok I am implementing in app subscriptions for my app. The recurring period is monthly. Everything is working OK - I can subscribe from my test accounts, am getting information from the purchase status API.
The response I get from the purchase status API is:
{ "kind": "androidpublisher#subscriptionPurchase", "initiationTimestampMsec": "1378389347847", "validUntilTimestampMsec": "1379037347847", "autoRenewing": true }
My question is how do I test if the user has cancelled the subscription or after one month has been billed again.
- Do I get any Intent in my app when the user cancels the subscription ?
- Do I get any Intent in my app when the user is billed after the recurring period ?
- Does the purchase token change for every recurring transaction, or it remains the same for subscription
- How do I test this all. Do I have to wait for a month to identify how the user is charged and the response I get on recurring billing.
Any help geeks out there would be quite useful. Thanks in advance !