美文网首页
iOS 微信分享、未验证应用 Universal Links

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

作者: 41c48b8df394 | 来源:发表于2021-04-07 17:25 被阅读0次

Universal Links 点击查看通用链接

官方解释

image.png
填写Universal Links

在项目AppDelegate中添加

-(BOOL)application:(UIApplication *)application continueUserActivity:(NSUserActivity *)userActivity restorationHandler:(void (^)(NSArray<id<UIUserActivityRestoring>> * _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

      本文链接:https://www.haomeiwen.com/subject/dbmukltx.html