เมื่อคุณมีโทเค็นการเข้าถึงและทำการเรียกใช้รายการอุปกรณ์ครั้งแรกแล้ว คุณก็พร้อมที่จะใช้ SDM API เพื่อเข้าถึงและควบคุมอุปกรณ์
แสดงรายการโครงสร้างและอุปกรณ์
ใช้ curl
เพื่อเรียก GET ไปยังปลายทาง structures
ง่ายๆ ดังนี้
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" } } } ] }
หากยังไม่ได้ดำเนินการ ให้เรียก GET ไปยังปลายทาง devices
เพื่อรับรายการอุปกรณ์
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 อื่นๆ
รับข้อมูลของอุปกรณ์
หากต้องการรับข้อมูลสำหรับอุปกรณ์ที่ต้องการ ให้โทร GET ไปที่ปลายทาง device-id
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" : {}
}'
สิ่งที่จะเกิดขึ้นเมื่อการโทรสำเร็จ ได้แก่
ตัวควบคุมอุณหภูมิ
คุณจะได้รับคำตอบว่างเปล่า และตัวควบคุมอุณหภูมิจริงจะเปลี่ยนโหมดปัจจุบันเป็นโหมดที่ระบุไว้ในพารามิเตอร์คำสั่ง
{}
กล้อง
คุณจะได้รับ URL ของสตรีมแบบสดและโทเค็นที่เกี่ยวข้อง
{ "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 ชั่วโมงเท่านั้น หากได้รับการตอบกลับว่า "ไม่ได้ตรวจสอบสิทธิ์" แสดงว่าโทเค็นอาจหมดอายุแล้ว ใช้โทเค็นการรีเฟรชเพื่อรับโทเค็นเพื่อการเข้าถึงใหม่
ข้อผิดพลาดอื่นๆ
ดูข้อมูลอ้างอิงรหัสข้อผิดพลาดเพื่อดูรายการ Device Access รหัสข้อผิดพลาด Device Access ทั้งหมด