Skip navigation
Currently Being Moderated

Link to rate your app on the app store?

May 4, 2012 10:25 AM

Tags: #app #cs5.5 #appstore

How can I create a link for players to rate my game on the app store?

 
Replies
  • Currently Being Moderated
    May 4, 2012 10:30 AM   in reply to GameViewPoint

    Do a navigatetourl to this address:

     

    itms-apps://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewContents UserReviews?type=Purple+Software&id=514220257

     

    where the number at the end is the ID to your app. You can get the ID by doing all of the submission of the app, except for the Application Loader part. By then you should have an ID number to plug in, and you do another distribution build with the link set correctly.

     
    |
    Mark as:
  • Currently Being Moderated
    May 4, 2012 10:41 AM   in reply to GameViewPoint

    No, purple was an iPhone codename, and it still haunts things like this. Use exactly the link I gave you, only change the number at the end.

     
    |
    Mark as:
  • Currently Being Moderated
    May 4, 2012 11:12 AM   in reply to GameViewPoint

    This is what apple officially suggests but its a crappy method because it first goes through iTunes then when the user hits the review button, it hangs and then loads the app store app, and sometimes it just crashes.

     

    Colin I will be using your method on my next update.

     
    |
    Mark as:
  • Currently Being Moderated
    May 4, 2012 11:29 AM   in reply to GameViewPoint

    No. It directly opens the reviews page inside the App Store app on the device you're using. It doesn't open a web page.

     
    |
    Mark as:
  • Currently Being Moderated
    May 20, 2012 6:18 PM   in reply to Colin Holgate

    Colin. I am trying this method, however no luck I am getting the message "cannot connect to iTunes store" I tried it with my own numbers on the end and with the link you showed in the example.

     

    My only guess is maybe it has to be a final publish to itunes ipa for it to work? I am trying it on a development version of the app, however I am linking to an app that is already in store.

     

    Suggestions welcome, did it work for you GameView?

     

    Oh also I the URL is a variable in my app so something like var linkToHere:String = "itms-apps://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewConten ts UserReviews?type=Purple+Software&id=514220257"

     

    this works on all the android version and it worked when I used "http://itunes.com/apps/appname"

     
    |
    Mark as:
  • Currently Being Moderated
    May 20, 2012 6:26 PM   in reply to Mark.fromOP

    Notice this part of what you posted:

     

    /wa/viewConten ts UserReviews?

     

    The space between the Conten and ts parts just crept in when you posted your message. That suggests that the space between the ts and UserReviews came from the space that crept in when I did my post. In other words, you have been using the link with a space in there. There should be no spaces in the link.

     
    |
    Mark as:
  • Currently Being Moderated
    May 20, 2012 6:34 PM   in reply to Colin Holgate

    COLIN!!!!!!!!!!!! You are my hero, thank you guys for such quick replies, I am getting ready to publish an update tonight and your replies just solved the issue. It was a space issue, the forum seems to auto add spaces because I only had the one extra space, taking it out solved the problem. This is so much better than what apple recommends, going through itunes.

     
    |
    Mark as:
  • Currently Being Moderated
    May 20, 2012 10:07 PM   in reply to GameViewPoint

    Hey guys, I have a similar issue.  I want to link to the app store on the iPad from a lite version of an app, to the full version.

     

    So there's some text saying, "For the full version click here" and an app store button.  What URL do I use please?

     
    |
    Mark as:
  • Currently Being Moderated
    May 20, 2012 10:21 PM   in reply to ChopperDavo

    You can use what Apple suggest that I posted above, but thats really a bad way of doing it because it first goes to iTunes then the App store, sometimes it times out and in general the process takes too long, about 3-4 seconds, too long for the A.D.D. world we live in, so one way of doing is to just link to your app through the link you get from the iTunes Connect website.

     

    http://itunes.apple.com/us/app/weaphones-firearms-simulator/id51764276 5?mt=8

     

    That opens the app store to your app with the purchase in the top right, I am sure its not the ultimate way of doing it, but I have done it before with my lite apps and it works just fine.

     
    |
    Mark as:
  • Currently Being Moderated
    May 20, 2012 11:43 PM   in reply to Mark.fromOP

    Right thanks mate.  I had decided to use that URL, but imagined it would just open safari and display the "iTunes Preview" in Safari on the iPad.  Because it loads that page up on Firefox on my PC when I run the app on the PC.

     

    But on the iPad, it does indeed load the app store, with my full version app there ready to be purchased! Wonderful!

     
    |
    Mark as:
  • Currently Being Moderated
    Oct 24, 2012 3:20 PM   in reply to Colin Holgate

    Colin Holgate wrote:

     

    Do a navigatetourl to this address:

     

    itms-apps://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewContents UserReviews?type=Purple+Software&id=514220257

     

    where the number at the end is the ID to your app. You can get the ID by doing all of the submission of the app, except for the Application Loader part. By then you should have an ID number to plug in, and you do another distribution build with the link set correctly.

     

    Colin do you know if this is no longer valid? I have been using this link structure for the last few months with no problems but testing out the latest version of my app and link no longer works, this is on iOS6, went back and tested iOS5 on a different device, same problem.

     

    Is this depreciated or is apple fussing with the app store getting ready for the new devices today?

     
    |
    Mark as:
  • Currently Being Moderated
    Oct 24, 2012 4:49 PM   in reply to Mark.fromOP

    Look at this discussion:

     

    http://stackoverflow.com/questions/12987743/link-to-app-review-tab-in- ios6-app-store

     

    That implies that someone had an issue with links on iOS 6, and the answer solved the issue. But the format is the same as we've used in the past. However, if I try my existing links I get an error about not being able to connect to the app store.

     

    That's even true of an app update that went live only a couple of days ago. But it could be because I'm in a basement on a bad network at the moment.

     
    |
    Mark as:
  • Currently Being Moderated
    Nov 1, 2012 4:53 AM   in reply to Colin Holgate

    I had to call a web page with a redirect (window.location) to your example link to avoid getting the error about not being able to connect to the app store. That works for me, but makes the app briefly open in the browser before it opens App Store.

     
    |
    Mark as:
  • Currently Being Moderated
    Dec 2, 2012 7:31 AM   in reply to GameViewPoint

    Here is example code to do that for both Apple and Google app stores:

    http://blog.flexwiz.net/tip-rate-my-app-air-style/

     
    |
    Mark as:

More Like This

  • Retrieving data ...

Bookmarked By (1)

Answers + Points = Status

  • 10 points awarded for Correct Answers
  • 5 points awarded for Helpful Answers
  • 10,000+ points
  • 1,001-10,000 points
  • 501-1,000 points
  • 5-500 points