iOS 微信分享 universalLink
2020-01-20 本文已影响0人
pingxhcn
1、注册微信 APPID
[WXApi registerApp:WX_AppId universalLink:@"https://xxx.company.cn/fileName/"];
2、新建JSON文件,命名为 apple-app-site-association ,放到https服务器根目录或者子目录.well-known中,如果.well-known不存在,新建一下
{
"applinks": {
"apps": [],
"details": [{
"appID":"teamId.BundleId,
"paths": ["/fileName/*"]
},
{
"appID":"teamId.BundleId",
"paths": ["/fileName/*"]
}]
}
}
3、在TARGETS -> Info -> LSApplicationQueriesSchemes 中添加 weixinULAPI / weixin
一定不能忘了添加 LSApplicationQueriesSchemes
4、在Signing & Capabilities 中添加 Associated Domains,然后添加域名:applinks:xxx.company.cn
5、在微信开放平台填写的 universalLink 要与代码中注册的universalLink 保持一致。