iOS7 itms-services scheme not work?

前端 未结 3 1465
孤城傲影
孤城傲影 2021-01-03 06:32

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=h         


        
相关标签:
3条回答
  • 2021-01-03 06:49

    This worked for me in iOS 8.0. Simply use https for URLs.

    0 讨论(0)
  • 2021-01-03 07:06

    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

    0 讨论(0)
  • 2021-01-03 07:11

    It seems Apple have disabled all URL schemas in iOS7 (including mailto: links) in standalone webapps. This has seriously implications for my place of work.

    See this post: https://discussions.apple.com/thread/5385948?start=0&tstart=0

    0 讨论(0)
提交回复
热议问题