I've searched for a way to open the App Store review tab either inside my own app or in the App Store app, to no avail. Any help on how to do this?
Notes: This is specifically for SWIFT 3, not Objective-C. I have seen old answers to open the app review tab in the iTunes store with the "purple software" url but I really dislike that it's not opening the App Store. I've used apps that open the App Store review tab directly but haven't found the code to do it.
Thanks!
Helpful answers When you review an app, it may take up to 24 hours for your review to show up. Hello, When you review an app, it may take up to 24 hours for your review to show up.
To download your app reviews as a CSV, head over to Reviews in the Explore navigation menu. Apply the necessary filters to refine the review list to only show the reviews you are interested in (or leave it as it is to export them all). Press 'Export' to export app reviews.
You need to use the itms-apps://
URL scheme (instead of itms://
) in order to go to the App Store instead of opening in the iTunes app.
if let reviewURL = URL(string: "itms-apps://itunes.apple.com/us/app/apple-store/YOUR_APP_ID?mt=8"), UIApplication.shared.canOpenURL(reviewURL) {
if #available(iOS 10.0, *) {
UIApplication.shared.open(reviewURL, options: [:], completionHandler: nil)
} else {
UIApplication.shared.openURL(reviewURL)
}
}
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