我正面临以下链接中提到的问题。
https://blog.branch.io/the-problem-with-apple-app-store-redirects-on-safari-ios-10-3/
下面是我的PHP代码:
var websiteLink = 'https://itunes.apple.com/';
var deepLink = "xxxx://dev/one?action="+action+"&shopId="+shopId;
var now = new Date().valueOf();
setTimeout(function () {
if (new Date().valueOf() - now > 5000) return;
window.location = websiteLink;
}, 100);
window.location = deepLink;这在低于10.3的操作系统中工作得很好。我在Safari中收到地址无效的问题。同样,这个问题只发生在Safari浏览器上,它在Chrome上运行良好。
请给我一些建议。
发布于 2017-05-29 17:40:46
当用户将其iOS设备更新到版本10.3时,就会出现此问题。根据该网站branch.io的说法,这是苹果修复一些安全漏洞的解决方案。
要为你的应用程序启用深度链接功能,你需要启动更新,因为深度链接停止工作的原因之一是过期的临时配置文件。
https://stackoverflow.com/questions/43560405
复制相似问题