# getCameraMatchStbSp ^8.7

如果需要进一步确定运营商信息(因为某些机顶盒电信版,联通版等版本遥控器一模一样),可调用此接口

# 请求参数

const params = {
    "areaId":"123",
    "remoteId":"456",
    "itype":"789"
}

1
2
3
4
5
6

# 接口调用示例

const params = {
    "areaId":"123",
    "remoteId":"456",
    "itype":"789"
}
this.$bridge
    .getCameraMatchStbSp(params)
    .then(res => {    
       this.$alert(res)
    })
    .catch(err => {
       this.$toast(err)
    })
1
2
3
4
5
6
7
8
9
10
11
12
13

# 返回参数示例


// code = -1000 ,酷控SDK错误
//code = -1001 参数错误
{
    "code":0,
    "result":{
        "spList":[
            {
                "spId":123,
                "type":456,
                "spName":"运营商"
            }
        ]
    }
}

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Last Updated: 6/6/2022, 6:27:27 PM