# openExternalApplication 跳转到外部 APP

# Attributes

只能在美居3.9/东芝2.6及以上版本中调用

属性 类型 必要 默认值 说明
app_type String Y 1 代表 google 2alexa,3ifttt,4yandex,5maika

# 调用示例

const params = {
  app_type: `${index}`,
};
window.bridge.openExternalApplication(
  params,
  (res) => {
    console.log("success", res);
  },
  (error) => {
    console.log("error", error);
  }
);

# callback

N/A

# 接口返回示例

N/A