我的 SmartThings 应用程序中有以下代码:
def result = new physicalgraph.device.HubAction (
method: ‘GET’,
path: “/api/alarm/${url}”,
headers: [
HOST: “${settings.ip}:${settings.port}”
]
)
sendHubCommand(result)
如何将主机名(而不是${settings.ip}
)传递给 HubAction?或者有没有办法将主机名解析为 IP 地址并传递它(似乎无法使用 InetAddress)?我看到了一些关于使用的帖子,dns.google.com
但我需要在我的局域网上解析一个主机名。