[Resolved] How can I find iOS Rate/Review app link to use from within game?

I’ve looked around, found a few examples, but haven’t seen any formal method… Getting ready to submit an app to the iOS app store this evening and wanted to make sure I have the correct link in there.

Here’s what I have so far - can anyone confirm?

local url = "itms-apps://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=546937504"  
system.openURL(url)  

thanks! [import]uid: 131038 topic_id: 30945 reply_id: 330945[/import]

That looks fine - it’s broken up in mine but last I used it;

[lua]local function doRating(event)
local url = “itms-apps://ax.itunes.apple.com/WebObjects/MZStore.woa”
url = url … “/wa/viewContentsUserReviews?”
url = url … “type=Purple+Software&id=”
url = url … “479147093”
system.openURL(url)
end[/lua]

Peach :slight_smile: [import]uid: 52491 topic_id: 30945 reply_id: 123771[/import]

Thanks Peach! I think I’d gotten that from your site actually :slight_smile:

Just one of those things that I’d hate to have wrong before submission… Being the perfectionist that I am it’s gonna be a long night lol :smiley: [import]uid: 131038 topic_id: 30945 reply_id: 123775[/import]

There is a new way to do this from daily build 907 onwards -

http://developer.coronalabs.com/forum/2011/06/16/nook-api-shop-details#comment-123742

Dave [import]uid: 117617 topic_id: 30945 reply_id: 123802[/import]

New API = awesome; thanks for linking to it Dave :slight_smile: [import]uid: 52491 topic_id: 30945 reply_id: 123846[/import]

Very cool :slight_smile: thanks for sharing that! [import]uid: 131038 topic_id: 30945 reply_id: 123876[/import]

That looks fine - it’s broken up in mine but last I used it;

[lua]local function doRating(event)
local url = “itms-apps://ax.itunes.apple.com/WebObjects/MZStore.woa”
url = url … “/wa/viewContentsUserReviews?”
url = url … “type=Purple+Software&id=”
url = url … “479147093”
system.openURL(url)
end[/lua]

Peach :slight_smile: [import]uid: 52491 topic_id: 30945 reply_id: 123771[/import]

Thanks Peach! I think I’d gotten that from your site actually :slight_smile:

Just one of those things that I’d hate to have wrong before submission… Being the perfectionist that I am it’s gonna be a long night lol :smiley: [import]uid: 131038 topic_id: 30945 reply_id: 123775[/import]

There is a new way to do this from daily build 907 onwards -

http://developer.coronalabs.com/forum/2011/06/16/nook-api-shop-details#comment-123742

Dave [import]uid: 117617 topic_id: 30945 reply_id: 123802[/import]

New API = awesome; thanks for linking to it Dave :slight_smile: [import]uid: 52491 topic_id: 30945 reply_id: 123846[/import]

Very cool :slight_smile: thanks for sharing that! [import]uid: 131038 topic_id: 30945 reply_id: 123876[/import]