A user has subscribed to my auto-renewable in app subscription. I want to provide a button called "Manage subscription".
This should jump to the App Store under the subscription management for my specific app.
What URL should I redirect to achieve this?
This is the new URL that should be used:
https://apps.apple.com/account/subscriptions
Based on account subscriptions URL provided by @i4guar, the below code is how I am navigating to the Account Subscriptions page using Swift 4.2. This is working for me on iOS 14.5.
if let url = URL(string: "https://apps.apple.com/account/subscriptions") {
if UIApplication.shared.canOpenURL(url) {
UIApplication.shared.open(url, options: [:])
}
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With