Is there a function call to get the app’s Apple store id that is used to open the app store page as in Application.OpenURL("itms-apps://itunes.apple.com/app/idxxxxxxxxx");
? It’s not Application.identifier
.
1 Like
There isn’t. You’ll have to bake that URL into your app, and the before you test it you’ll have to make your app live in App Store.
That ID looks like the numeric ID for the app listing in App Store Connect, but I may be wrong.
1 Like
As @Neonlyte stated, there isn’t a way to get it through code. You will need to set up the app/game in App Store Connect and get the Apple ID from there.
Here is what Application.identifier is:
1 Like
So it has to be hardcoded. Thank you all!
There is a way. Load
“https://itunes.apple.com/lookup?bundleId=” + Application.identifier
Parse json and get it from trackViewUrl
1 Like