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?