2

I have an install page (for an iOS app over the air), with an itms link to the plist file. (long story but) the plist file 'has to be' in the install page… I tried a data url:

<a href="itms-services://?action=download-manifest&url=data:text/xml,<the-plist-content>">Download</a>

but that didn't work… What did I do wrong, or is there another way?

P.S.: the IPA url in the plist file has to be in its original state, not encoded!

Mat
  • 202,337
  • 40
  • 393
  • 406
eds1999
  • 1,018
  • 2
  • 12
  • 26

2 Answers2

0

Is there any error in your OTA link, the argument of url needs to the url of the plist. Is that correct in your case?

<a href="itms-services://?action=download-manifest&url=http://www.yourdomain.com/Installer/Application.plist">Application Name</a>
Anupdas
  • 10,211
  • 2
  • 35
  • 60
  • My problem is the the plist file content can't be an external file… That's why i wanted to put it in the install page itself… – eds1999 May 01 '13 at 18:41
  • @eds1999 Sorry for the trouble, this is the only way that I have used to distribute In-House apps by OTA. The plist contains the meta data to locate the actual ipa file,I would also like to know if there are any other ways to do this. – Anupdas May 01 '13 at 18:46
0

The url path of the .plist file should be [https], not [http]. Maybe HTTP is not secure; make sure your .plist file is placed in a HTTPS-supporting server.

Nathan Tuggy
  • 2,237
  • 27
  • 30
  • 38