2

So in the App Store Connect In-app purchase manage, Offer Codes tab, we can see offers with Offer Code URL like this format:

(1) https://apps.apple.com/redeem?ctx=offercodes&id=YOUR_APP_ID&code=CODE 

When I implement this URL, my iOS 11.0 device can not open to redeem page of the App Store (It showed "Can not connect to App Store"). But other devices with iOS 12.0 and above worked fine.

When researching I found this URL :

(2) tms-apps://buy.itunes.apple.com/WebObjects/MZFinance.woa/wa/freeProductCodeWizard?code=YOUR_CODE. 

which is also open the redeem page of the App Store. And it worked for all of my devices. So should I use this? And what is the difference between (1) and (2)?

H.M.Mubashir
  • 170
  • 1
  • 14
KaMaHe
  • 413
  • 1
  • 7
  • 18

1 Answers1

0

The URL https://apps.apple.com/redeem gets redirected to https://buy.itunes.apple.com/WebObjects/MZFinance.woa/wa/redeemLandingPage?mt=12. So I would say that the your (1) URL is trying to redirect, but your APP is not coping with the redirect. So yes, use (2)

Dijkgraaf
  • 11,049
  • 17
  • 42
  • 54