The query refers to the itms-services URL scheme, a protocol used by Apple's iOS to facilitate Over-the-Air (OTA) installation of enterprise and ad-hoc applications. Apple Support Overview of the Protocol The full command structure typically looks like:
itms-services://?action=download-manifest&url=https://yourdomain.com itms-services://
: The custom URL scheme that triggers the iOS installation process. action=download-manifest : Tells the device to download an XML-based file (the manifest) before downloading the actual app (
The complete URL syntax you are looking for is typically used for Over-the-Air (OTA) iOS app installations. The "AMP" part often refers to the & HTML entity used to encode the ampersand in a link. The complete, standard text for this link in HTML is: Itms-services Action Download-manifest Amp-url Https
itms-services://?action=download-manifest&url=https://YOUR_URL_HERE/manifest.plist Use code with caution. Copied to clipboard Breakdown of the Link Components
itms-services://: The custom URL scheme that triggers the iOS wireless installation service.
?action=download-manifest: Tells the system the specific action to perform, which is to download the app's configuration manifest. The query refers to the itms-services URL scheme,
&url=: The parameter defining where the manifest file is hosted.
Note: In HTML code, this is often written as &url= to comply with HTML character entity requirements.
Itms-services Action Download-manifest Amp-url Https: A Deep Dive into iOS Over-the-Air Distribution Beta testing : Tools like TestFlight used to
itms-services from your company’s intranet.| Component | Value | Description |
|-----------|-------|-------------|
| Scheme | itms-services | Apple’s internal services scheme (iTunes Mobile Services). |
| Action | download-manifest | Tells iOS to fetch and parse a manifest .plist file. |
| Parameter | url | URL-encoded HTTPS address to the .plist manifest file. |
| Alternative | amp-url | Not a valid parameter. Likely a user typo for url. In some internal contexts, amp could stand for “Apple Mobile Package” but is non‑standard. |
Correct syntax:
itms-services://?action=download-manifest&url=https://example.com/app/manifest.plist
amp-urlNot an amplifier. Not a shortcut for “&.” In this context (likely a typographical formatting quirk from an encoded URL), it’s the quiet cousin of &url=. But let’s focus on the real star:
Before Apple acquired TestFlight, this was the standard for over-the-air (OTA) beta distribution. Even today, many CI/CD pipelines (Jenkins, Fastlane) generate manifest .plist and .ipa pairs, then email or SMS the itms-services link to testers.