日本熟妇hd丰满老熟妇,中文字幕一区二区三区在线不卡 ,亚洲成片在线观看,免费女同在线一区二区

網關 gateway

本文介紹自定義設備面板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);
});