- 用户中心
- 规则链管理
- 运行日志
- 共享节点管理
- 动态组件管理
- 节点组件管理
- 组件市场
- 设置
获取共享组件详情
开发环境
开发环境
GET
/api/v1/shared-nodes/{id}
请求参数
Authorization
在 Header 添加参数
Authorization
,其值为在 Bearer 之后拼接 Token示例:
Authorization: Bearer ********************
Path 参数
id
string
组件标识
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET 'http://dev-cn.your-api-server.com/api/v1/shared-nodes/'
返回响应
🟢200成功
application/json
Body
id
string
节点ID
type
string
节点类型
name
string
名称
debugMode
boolean
调试模式
configuration
object
节点表单配置
additionalInfo
object
扩展字段
description
string
描述
layoutX
integer
布局X
layoutY
integer
布局Y
icon
string
图标
background
string
背景颜色
示例
{
"ruleChain": {
"id": "e3153605-71a3-4a3f-bcac-f755710135e6",
"name": "测试",
"debugMode": true,
"root": true,
"additionalInfo": {
"createTime": "2024/05/9 14:14:51",
"description": "",
"updateTime": "2024/05/15 15:53:06",
"username": "admin"
}
},
"metadata": {
"firstNodeIndex": 0,
"nodes": [
{
"id": "node_2",
"additionalInfo": {
"description": "",
"layoutX": 520,
"layoutY": 280
},
"type": "jsTransform",
"name": "21",
"debugMode": false,
"configuration": {
"jsScript": "return {'msg':msg,'metadata':metadata,'msgType':msgType};"
}
},
{
"id": "node_4",
"additionalInfo": {
"description": "",
"layoutX": 910,
"layoutY": 270
},
"type": "jsFilter",
"name": "fa",
"debugMode": true,
"configuration": {
"jsScript": "return msg.temperature < 50;"
}
},
{
"id": "node_8",
"additionalInfo": {
"description": "",
"layoutX": 1180,
"layoutY": 270
},
"type": "jsTransform",
"name": "222",
"debugMode": true,
"configuration": {
"jsScript": "return {'msg':msg,'metadata':metadata,'msgType':msgType};"
}
}
],
"connections": [
{
"fromId": "node_2",
"toId": "node_4",
"type": "Success"
},
{
"fromId": "node_4",
"toId": "node_8",
"type": "False"
}
]
}
}
修改于 2025-04-01 03:29:36