subscription
How to check In App Purchase Auto Renewable Subscription is valid
Today, I have trouble with this problem. Follow Apple doc here, I used this way to check subscription is expired or not. My idea: user APPLE REST API response: (request time + expired time) to check expired or not + (BOOL)checkInAppPurchaseStatus { // Load the receipt from the app bundle. NSURL *receiptURL = [[NSBundle mainBundle] … Read more
Am I getting the steps right for verifying a user’s Android in-app subscription?
As it turns out, my steps were not correct. It took me weeks to figure this out and it doesn’t seem to be documented anywhere else. You’re welcome: Create a Web Application account in the Google APIs Console. Put any website as a “redirect URI”; it doesn’t matter since you will not really be using … Read more
How to cancel Auto-renewable subscription by using test user in sandbox environment?
You can do it in the following way: Open iOS Settings Go to “App Store” Tap your sandbox account (“SANDBOX ACCOUNT” section at the bottom of the screen) Select “Manage” “Edit subscription” screen will open and there you’ll have a “Cancel subscription” option for your Sandbox subscription. With a small delay (it was several minutes … Read more
How to remove Subscription from product list in developer console and what will be its effect on the old subscribed users?
Unfortunately, It’s not possible to remove a subscription product from the product list of the developer console. You can just remove the subscription product from the product list offered in your app to prevent users from seeing or purchasing it.
iOS recurring subscription policy for service, not content
I am sorry that i am coming into this a little late, but i have an answer for this. Basically about a month ago i submitted my app and it got rejected for not including iAP as it links to our SAAS website for users to set up their subscriptions. So off i went and … Read more
How to ensure an event is only subscribed to once
I’m adding this in all the duplicate questions, just for the record. This pattern worked for me: myClass.MyEvent -= MyHandler; myClass.MyEvent += MyHandler; Note that doing this every time you register your handler will ensure that your handler is registered only once.
Why I didn’t see Auto-Renewable Subscription in iTunes Connect
I have found answer: When you want to sell something, but you haven’t sold anything before. You should open iTunes Connect -> Agreements, Tax, and Banking. I think you have got Master Agreements -> Contracts In Effect -> only row with Contract Type: Free Applications Apple doesn’t give you access to functions for sell anything. … Read more
Use in_app or latest_receipt_info for getting latest receipt for auto-renewable iOS 7 style transactions?
Just wanted to make clear that only the latest_receipt_info field is returning the latest renewed receipt. This is based on what we’re actually getting back from Apple. The relevant documentation is here on page 21. Although it states that latest_receipt and latest_receipt_info fields are “Only returned for iOS 6 style transaction receipts for auto-renewable subscriptions”, … Read more