Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Link to app manage subscriptions in app store

Currently with In app purchase the only way to cancel an auto-renewing subscription is to do the following with the device:

Settings > Store > View my account > Manage my subscription

Is it possible programmatically to link directly to the Manage my subscription page in the app store? I know I can open the app store via something like

NSURL *url = [NSURL URLWithString:@"itms-apps://itunes.apple.com"]; [[UIApplication sharedApplication] openURL:url]; 

I have seen other apps do this but I can't seem to figure out how.

like image 311
OneDimensionalmc Avatar asked Mar 20 '13 17:03

OneDimensionalmc


People also ask

How do I manage app Subscriptions on iPhone?

Open the Settings app. Tap your name. Tap Subscriptions. Tap the subscription.

How do I stop automatic payments on App Store?

Tap the profile icon located at the top-right corner. Tap Payments & Subscription, then select Subscriptions. Select the subscription that you want to cancel. Tap Cancel subscription.


1 Answers

The new and official way (according to WWDC 2018 Session 705) is the following url: https://apps.apple.com/account/subscriptions

Link for doc: https://developer.apple.com/documentation/storekit/in-app_purchase/subscriptions_and_offers/handling_subscriptions_billing

like image 116
ChaosCoder Avatar answered Sep 16 '22 14:09

ChaosCoder