(可选)使用canOpenLink判断应用是否可访问

使用场景

在应用A想要拉起应用B的场景中,应用A可先调用canOpenLink接口判断应用B是否可访问,如果可访问,再拉起应用B。

约束限制

在entry模块的module.json5文件中的querySchemes字段中,最多允许配置50个URL scheme。

接口说明

canOpenLink是bundleManager提供的支持判断目标应用是否可访问的接口。 匹配规则请参考显式Want与隐式Want匹配规则

操作步骤

调用方操作步骤

  1. 在entry模块的module.json5文件中配置querySchemes属性,声明想要查询的URL scheme。

    {
      "module": {
        //...
        "querySchemes": [
          "app1Scheme"
        ]
      }
    }
    
  2. 导入ohos.bundle.bundleManager模块。

  3. 调用canOpenLink接口。

    import { bundleManager } from '@kit.AbilityKit';
    import { BusinessError } from '@kit.BasicServicesKit';
    import { hilog } from '@kit.PerformanceAnalysisKit';
    try {
      let link = 'app1Scheme://test.example.com/home';
      let canOpen = bundleManager.canOpenLink(link);
      hilog.info(0x0000, 'testTag', 'canOpenLink successfully: %{public}s', JSON.stringify(canOpen));
    } catch (err) {
      let message = (err as BusinessError).message;
      hilog.error(0x0000, 'testTag', 'canOpenLink failed: %{public}s', message);
    }
    

目标方操作步骤

在module.json5文件中配置uris属性。

{
  "module": {
    //...
    "abilities": [
      {
        //...
        "skills": [
          {
            "uris": [
              {
                "scheme": "app1Scheme",
                "host": "test.example.com",
                "pathStartWith": "home"
              }
            ]
          }
        ]
      }
    ]
  } 
}