PSDK 互联互通
Event
自定义消息推送cloud
Topic: thing/product/{gateway_sn}/events
Direction: up
Method: custom_data_transmission_from_psdk
Data:
Column | Name | Type | constraint | Description |
---|---|---|---|---|
value | 数据内容 | text | {"length":"小于 256"} |
Example:
{
"method": "custom_data_transmission_from_psdk",
"bid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"tid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"timestamp": 1689911315621,
"gateway": "4TADKAQ000002J",
"data": {
"value": "hello world"
}
}
Service
cloud-自定义消息推送到psdk
Topic: thing/product/{gateway_sn}/services
Direction: down
Method: custom_data_transmission_to_psdk
Data:
Column | Name | Type | constraint | Description |
---|---|---|---|---|
value | 数据内容 | text | {"length":"小于 256"} |
Example:
{
"bid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"data": {
"value": "hello world"
},
"method": "custom_data_transmission_to_psdk",
"tid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"timestamp": 1689740550047
}
Topic: thing/product/{gateway_sn}/services_reply
Direction: up
Method: custom_data_transmission_to_psdk
Data:
Column | Name | Type | constraint | Description |
---|---|---|---|---|
result | 返回码 | int |
Example:
{
"bid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"data": {
"result": 0
},
"method": "custom_data_transmission_to_psdk",
"tid": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
"timestamp": 1689740550047
}