We are trying to create a QR code of this URL:
itms-services://?action=download-manifest&url=itms-services://?action=download-manifest&url=https://url/app.plist
So that if user scans the QR code, they should get a popup for installation of the app.
We created the QR code, so when we scan it takes you to Safari but the installation doesn't work.
Also, when I hit this URL from app programmatically, it works.
[[UIApplication sharedApplication] openURL:[NSURL URLWithString: @"itms-services://?action=download-manifest&url=itms-services://?action=download-manifest&url=https://url/app.plist"]]
but when I manually add it in browser then it doesn't work.
Can someone guide me? Am I doing something wrong?
itms-services://
).+[UIApplication openURL:]
should employ whatever apps/means available to open a given URL, but that's not necessarily going to be Safari. However, this still does not explain why the QR code does not work...? – Molder