智能客服
你问我答,随时在线为你解决问题
应用内点击第三方应用图标,出现短暂loading后,没有成功拉起跳转到第三方应用。
排查context.openLink(link, { appLinkingOnly: true })中使用的link链接是否正确。
context.openLink(link, { appLinkingOnly: true })中使用的link链接不是https的链接。
context.openLink(link, { appLinkingOnly: true })中使用的link链接,必须为https开头的链接,参考如下:
let link: string = "https://www.example.com/programs?action=showall";
排查Want中的flags字段是否设置为FLAG_START_WITHOUT_TIPS。
Want中的flags字段设置为FLAG_START_WITHOUT_TIPS,导致没有能够匹配的应用,没有弹框提示。
flags字段非必填字段可省略,参考如下:
let want: Want = { uri: "link://www.example.com" };