本文介紹自定義設備面板SDK中網關請求的API調用。
背景信息
SDK的安裝與API調用方法,請參考快速開始。
云端API請求
request
請求參數
參數 | 參數類型 | 子參數 | 子參數類型 | 描述 | 是否必填 |
path | string | 無 | 無 | 接口的路徑 | 是 |
options | object | version | string | 接口版本號 | 是 |
protocol | string | 協議,推薦使用:https://。 | 是 | ||
authType | string | 填入:iotAuth | 否 | ||
data | object | 接口參數 | 否 |
調用示例
gateway.request('/xx/xx/xx/get', {
version: '1.0.0',
protocol: 'https://',
authType: 'iotAuth',
data: {
iotId:'xxx'
},
}).then((res) => {
console.log(res);
}).catch((err) => {
console.warn(err);
});
文檔內容是否對您有幫助?