iOS 微信分享、未验证应用 Universal Links

Universal Links 点击查看通用链接

官方解释

image.png

填写Universal Links

在项目AppDelegate中添加

-(BOOL)application:(UIApplication *)application continueUserActivity:(NSUserActivity *)userActivity restorationHandler:(void (^)(NSArray> * _Nullable))restorationHandler{
    return  [WXApi handleOpenUniversalLink:userActivity delegate:self];
}

微信校验 Universal Links

  [WXApi checkUniversalLinkReady:^(WXULCheckStep step, WXCheckULStepResult * _Nonnull result) {
       
        NSLog(@"%ld  建议:%@  是否成功:%d  错误信息:%@",step, result.suggestion,result.success,result.errorInfo);
    }]

第三方快速设置Universal Links 网站

https://www.xinstall.com/admin/universal_link 免费的

image.png

Moblink

PS: 更新了微信SDK后,Universal Links 已校验成功,但是还是提示未验证应用,未验证应用名单非实时更新,前一天有接入新SDK(1.8.6版本以上)并且有正确调用记录第二天才会移除出名单

你可能感兴趣的:(iOS 微信分享、未验证应用 Universal Links)