示例
如何与 supervisor API 对接的示例。
使用 cURL 获取网络信息
response:
向 supervisor 发送 Ping
response:
如何与 supervisor API 对接的示例。
curl -sSL -H "Authorization: Bearer $SUPERVISOR_TOKEN" http://supervisor/network/inforesponse:
{
"result": "ok",
"data": {
"interfaces": {
"eth0": {
"ip_address": "192.168.1.100/24",
"gateway": "192.168.1.1",
"id": "Wired connection 1",
"type": "802-3-ethernet",
"nameservers": ["192.168.1.1"],
"method": "static",
"primary": true
}
}
}
}curl -sSL http://supervisor/supervisor/pingresponse:
{
"result": "ok",
"data": {}
}
