# addSceneToSiriShortcut ^7.8
添加场景到Siri Shortcut
# 请求参数
Prop | Type | Default | Comment |
---|---|---|---|
homegroupId | String | N/A | 家庭ID |
sceneId | String | N/A | 场景ID |
sceneName | String | N/A | 场景名 |
# 接口调用示例
const params = {
"homegroupId": "家庭ID",
"sceneId": "场景ID",
"sceneName": "场景名"
}
this.$bridge
.addSceneToSiriShortcut(params)
.then(res => {
this.$alert(res)
})
.catch(err => {
this.$toast(err)
})
1
2
3
4
5
6
7
8
9
10
11
12
13
14
2
3
4
5
6
7
8
9
10
11
12
13
14
# 接口返回示例
{
"status": "0/1"
}
1
2
3
4
5
2
3
4
5