cannot make review on itunes store.

Hi All,
Anyone find what I’m doing wrong on below code.

This code was copy from one of demo from Corona. I can’t make any review on the itunes store.
And also any testing I can make before live on itunes store. Seems to be there are no way to make review before app is ready to sell.

Thanks in advance.

KC

***************************************************************************************
local itunesID = 123456789

local itmsURL = “itms-apps://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsuserReviews?type=Purple+Software&id=” … itunesID
system.openURL( itmsURL )

**************************************************************************************** [import]uid: 94613 topic_id: 28097 reply_id: 328097[/import]

I use a different URL when sending people to the review page. Below would be how it would look using your code
[lua]local itunesID = 514377666

local itmsURL = “https://userpub.itunes.apple.com/WebObjects/MZUserPublishing.woa/wa/addUserReview?id="..itunesID.."&type=Purple+Software
system.openURL( itmsURL )[/lua]

It will open it in safari then iTunes. I used one of my own app ids(they are made public anyway). You can test it using mine then when you are ready to deploy change it to your id. [import]uid: 147305 topic_id: 28097 reply_id: 113511[/import]

Thanks for your prompt reply.

One of my friend told me I’m missing the “” before and after the itunesID.

Is that correct? Because I can’t test it until app go live in store.

KC [import]uid: 94613 topic_id: 28097 reply_id: 113527[/import]

Your friend is incorrect.

Just test it using the iTunes ID I listed. If you get that to work then you know your code is good and you can just swap in your own iTunes ID before publishing for the App Store. [import]uid: 147305 topic_id: 28097 reply_id: 113532[/import]

Thanks a lot.

KC [import]uid: 94613 topic_id: 28097 reply_id: 113577[/import]