Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

URL for redeeming Mac App Store promo codes

I want to be able to send out a link for a free download of my app in the app store using a promo code. This can be done with the iOS app store using this URL https://phobos.apple.com/WebObjects/MZFinance.woa/wa/freeProductCodeWizard?code=<YOUR-PROMO-CODE-HERE>

This doesn't work with Mac app store promo codes though.

Does anyone know if a similar url exists for the Mac app store?

like image 323
Randall Avatar asked Dec 24 '11 07:12

Randall


People also ask

Does Apple allow promo codes?

Customers can redeem offer codes on the App Store, through a one-time code redemption URL, or in your app if you've implemented the presentCodeRedemptionSheet() API. Offer codes are available on devices running iOS 14 and iPadOS 14 and later.

Where is quick links in Mac App Store?

Answer: A: The Quick Links are at the bottom of the Discover page.


2 Answers

The Mac App Store has two URL schemes, macappstore: and macappstores:. It looks like you need to use latter (with the trailing s) for secure links. The following link format seems to work for sending out direct links to redeem a promo code:

macappstores://buy.itunes.apple.com/WebObjects/MZFinance.woa/wa/redeemLandingPage?code=YOUR_PROMO_CODE

like image 87
Zach Waugh Avatar answered Oct 24 '22 15:10

Zach Waugh


I've tried macappstores://... which didn't work.

but this works:

http://buy.itunes.apple.com/WebObjects/MZFinance.woa/wa/redeemLandingPage?code=YOUR_PROMO_CODE

(I tested on iOS 7 on the iPhone)

like image 26
Ploink Avatar answered Oct 24 '22 15:10

Ploink