Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a URL forwarding to the App Store review creator in iOS 11?

In iOS 10, I was able to forward directly from my app to its App Store ratings page by using the following link:

http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?id=app_id_here&pageNumber=0&sortOrdering=2&type=Purple+Software&mt=8

However, in iOS 11 with its all-new App Store where the review page doesn't exist any longer, this seems to be broken now.

Does anyone know an alternative url that opens up the review creator page directly? Or does Apple want us to stop using such links?

like image 840
fredpi Avatar asked Jul 08 '17 18:07

fredpi


People also ask

How do I share a link to my App Store review?

Go to App Information section (it should automatically take you there) At the bottom of that page, there is a blue link that says View on App Store . Click it and it will open to a blank page. Copy what is in the URL bar at the top of the page and that's your app reviews link.

How do I get the URL for App Store?

Find app link via Google Play Store on your deviceStep 1: Go to the Google Play Store on your Android device. Step 2: Search for your app and go to the app page. Step 3: Tap the three-dot button on the top right of the screen, then choose Share > Copy.

How do you get a developer response to your review on the App Store?

iTunes Connect, the interface where developers manage the products they provide for download on the App Store, displays the customer reviews. The incoming reviews will be shown on a page, allowing developers to comment or report them. (Ratings and Reviews can be found under App –> Activity –> Ratings and Reviews.)

How do I export my App Store review?

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.


1 Answers

You need to add a name after the app parameter of your url (here I use 'itunes-u') :

https://itunes.apple.com/us/app/itunes-u/id\(appID)?ls=1&mt=8&action=write-review

Also note that the scheme seems to be working properly so you could instead call :

itms-apps://itunes.apple.com/us/app/itunes-u/id\(appID)?ls=1&mt=8&action=write-review
like image 51
thibaut noah Avatar answered Sep 18 '22 02:09

thibaut noah