ITMS Helper is a small web app powered by Vapor 3 that provides a free API to generate and serve custom .plist
files, useful for OTA (Over-The-Air) deployment of iOS Apps.
The .plist
files used for OTA deployment must be served with HTTPS protocol, and Heroku hosting includes it by default.
- A direct link to a
.ipa
file that is already signed for your device. The link can be HTTP, and you can even use a local server to serve the file (e.ghttp://127.0.0.1:8080/file.ipa
). - The bundle identifier of the
.ipa
file you're installing (e.gcom.apple.Maps
). - The name and version of the app (version is optional). Can be any string.
- Send a HTTP GET request to
https://itms-plist-helper.herokuapp.com/request
with parameterslink
(link to the.ipa
file),bundle
(bundle identifier),title
(name of the app) andversion
(bundle version, optional). - If all parameters are correct, the response will be a JSON object containing a
uuid
field. - The .plist file will then be located at
https://itms-plist-helper.herokuapp.com/plists/{uuid}.plist
Note that all.plist
files are kept on the server for a maximum of 24 hours.
https://itms-plist-helper.herokuapp.com/request?link=http://example.com/file.ipa&bundle=sample.app.bundle&title=some%20title&version=1.0
{ "uuid": "SOME_UUID" }
in JSON format.
Visit this URL from your device (copy and paste it in Safari) and you'll be prompted to install the app:
itms-services://?action=download-manifest&url=https://itms-plist-helper.herokuapp.com/plists/{THAT_UUID}.plist
Yes. This app is hosted on Heroku's free tier, so restrictions may apply.
Of course! Make sure you have Vapor 3 installed and run the following commands:
$ git clone https://github.com/n3d1117/itms-helper.git
$ cd itms-helper/
$ vapor update && vapor build && vapor run serve
See LICENSE file for further information. Feel free to contribute in any way you want.