使用 API

获取访问令牌并完成初始设备列表调用后, 准备好使用 SDM API 访问和控制您的设备。

列出结构和设备

使用 curlstructures 端点进行简单的 GET 调用:

curl -X GET 'https://smartdevicemanagement.googleapis.com/v1/enterprises/project-id/structures' \
    -H 'Content-Type: application/json' \
    -H 'Authorization: Bearer access-token'

如果调用成功,系统便会返回与您的 Device Access 项目:

{
  "structures": [
    {
      "name": "enterprises/project-id/structures/structure-id",
      "traits": {
        "sdm.structures.traits.Info": {
          "customName": "structure-name"
        }
      }
    }
  ]
}

如果您尚未对 devices 端点进行 GET 调用,请执行此操作 获取设备列表:

curl -X GET 'https://smartdevicemanagement.googleapis.com/v1/enterprises/project-id/devices' \
    -H 'Content-Type: application/json' \
    -H 'Authorization: Bearer access-token'

如果通话成功,系统便会返回与您的 Device Access关联的设备的列表 项目。每种设备都有自己唯一的可用特征列表:

{
  "devices": [
    {
      "name": "enterprises/project-id/devices/device-id",
      "type": "sdm.devices.types.device-type",
      "traits": { ... },
      "parentRelations": [
        {
          "parent": "enterprises/project-id/structures/structure-id/rooms/room-id",
          "displayName": "device-room-name"
        }
      ]
    }
  ]
}

复制每台设备的 device-id,进行其他 API 调用时需要用到该 device-id

获取设备信息

如需获取特定设备的信息,请向 device-id 发出 GET 调用 端点:

curl -X GET 'https://smartdevicemanagement.googleapis.com/v1/enterprises/project-id/devices/device-id' \
    -H 'Content-Type: application/json' \
    -H 'Authorization: Bearer access-token'

响应应与之前类似,但仅针对特定设备:

{
  "name": "enterprises/project-id/devices/device-id",
  "type": "sdm.devices.types.device-type",
  "traits": { ... },
  "parentRelations": [
    {
      "parent": "enterprises/project-id/structures/structure-id/rooms/room-id",
      "displayName": "device-room-name"
    }
  ]
}

执行一项命令

通过成功的 GET 调用验证您的访问权限后,请尝试执行 命令:

温控器

curl -X POST \
  'https://smartdevicemanagement.googleapis.com/v1/enterprises/project-id/devices/device-id:executeCommand' \
  -H 'Content-Type: application/json' \
  -H 'Authorization: Bearer access-token' \
  --data-raw '{
    "command" : "sdm.devices.commands.ThermostatMode.SetMode",
    "params" : {
      "mode" : "HEAT"
    }
  }'

摄像头

curl -X POST \
  'https://smartdevicemanagement.googleapis.com/v1/enterprises/project-id/devices/device-id:executeCommand' \
  -H 'Content-Type: application/json' \
  -H 'Authorization: Bearer access-token' \
  --data-raw '{
    "command" : "sdm.devices.commands.CameraLiveStream.GenerateRtspStream",
    "params" : {}
  }'

如果调用成功,则会出现以下结果:

温控器

您收到空响应,但实体温控器更改了 将当前模式更改为命令参数中指定的模式。

{}

摄像头

您会收到直播网址和相关令牌。

{
  "results" : {
    "streamUrls" : {
      "rtspUrl" : "rtsps://someurl.com/CjY5Y3VKaTZwR3o4Y19YbTVfMF...?auth=g.0.streamingToken"
    },
    "streamExtensionToken" : "CjY5Y3VKaTZwR3o4Y19YbTVfMF...",
    "streamToken" : "g.0.streamingToken",
    "expiresAt" : "2018-01-04T18:30:00.000Z"
  }
}

问题排查

不进行身份验证

SDM API 的访问令牌仅在 1 小时内有效。如果 您收到了 UNAUTHENTICATED 响应,则表明令牌可能已过期。使用您的 刷新令牌以获取新的 访问令牌。

其他错误

请参阅错误代码参考,了解 错误代码的完整列表 Device Access 。