Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

iOS7 itms-services scheme not work?

I have an in-house app which I distribute over a local wifi

in release page have a link like this

itms-services://?action=download-manifest&url=http://192.168.1.231/app/plist/houseApp/out.plist

this worked on iOS 7 Safari

but when i add this page to main screen (like web app)

the same link didn't work, and apache access.log have no record about /app/plist/houseApp/out.plist

this worked in iOS 6

Anybody knows about this?

like image 591
Leo Avatar asked Dec 08 '22 12:12

Leo


1 Answers

On the 7.1 update all software installation services are forced to use the HTTPS protocol, also covering non-standard itms-services:// URLs.

You need to change the protocol type:

  • from: itms-services://?action=download-manifest&url=http://yourdomain.com/manifest.plist
  • to: itms-services://?action=download-manifest&url=https://yourdomain.com/manifest.plist

For more detail and how to get a certificate go to: Fix certificate error on iOS 7

like image 122
Lisarien Avatar answered Dec 11 '22 10:12

Lisarien