如何在 Java 中发送正确的 HTTP PUT 请求
How to send a correct HTTP PUT request in Java
我想使用飞利浦 HUE Api Java 关灯。
为此,我有以下 API:http://192.168.0.53/api/HZ3bJqN3MIb35uNcI4FfsGcqstwbW6qgvuxd7Tmt/lights/1/
这个returns:
{
"state": {
"on": true,
"bri": 178,
"hue": 41044,
"sat": 56,
"effect": "none",
"xy": [
0.3313,
0.3447
],
"ct": 181,
"alert": "select",
"colormode": "ct",
"mode": "homeautomation",
"reachable": true
},
"swupdate": {
"state": "noupdates",
"lastinstall": "2020-07-03T12:17:24"
},
"type": "Extended color light",
"name": "Hue color spot 1",
"modelid": "LCG002",
"manufacturername": "Signify Netherlands B.V.",
"swconfigid": "9FD98F72"
}
现在我想用Java将“on:true”修改为“on:false”。为此,我有这个代码:
URL url = new URL("http://192.168.0.53/api/HZ3bJqN3MIb35uNcI4FfsGcqstwbW6qgvuxd7Tmt/lights/1/");
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
connection.setRequestMethod("PUT");
connection.setDoOutput(true);
connection.setDoInput(true);
connection.setConnectTimeout(60000);
connection.setReadTimeout(60000);
connection.setRequestProperty("Content-Type", "application/json");
JSONObject requestBody = new JSONObject();
requestBody.put("on", false);
OutputStreamWriter writer = new OutputStreamWriter(connection.getOutputStream());
writer.write(requestBody.toString());
writer.flush();
writer.close();
// Debug
int response = connection.getResponseCode();
System.out.println(requestBody.toString());
System.out.println(response);
这个 returns '200' 和 {"on":false} 这将是完美的。
但出于某种原因,它什么也不做。即使连接存在,灯仍然亮着。
知道为什么吗?
我正在尝试做同样的事情,但不知道 Java 部分。
我让 curl 在命令级别使用三引号工作:
curl -X PUT -H "Content-Type: application/json" -d {"""on""":false} http://192.168.0.53/api/HZ3bJqN3MIb35uNcI4FfsGcqstwbW6qgvuxd7Tmt/lights/1/state
此代码适用于您的 hue 灯,请在使用后与我分享 Java 代码。麦克@toggle.is
您对 PUT 请求使用了错误的 URL。
对 http://192.168.0.53/api/.../lights/1
的 GET 请求将 return 当前状态
但要修改您需要向 http://192.168.0.53/api/.../lights/1/state
发出 PUT 请求
我想使用飞利浦 HUE Api Java 关灯。 为此,我有以下 API:http://192.168.0.53/api/HZ3bJqN3MIb35uNcI4FfsGcqstwbW6qgvuxd7Tmt/lights/1/
这个returns:
{
"state": {
"on": true,
"bri": 178,
"hue": 41044,
"sat": 56,
"effect": "none",
"xy": [
0.3313,
0.3447
],
"ct": 181,
"alert": "select",
"colormode": "ct",
"mode": "homeautomation",
"reachable": true
},
"swupdate": {
"state": "noupdates",
"lastinstall": "2020-07-03T12:17:24"
},
"type": "Extended color light",
"name": "Hue color spot 1",
"modelid": "LCG002",
"manufacturername": "Signify Netherlands B.V.",
"swconfigid": "9FD98F72"
}
现在我想用Java将“on:true”修改为“on:false”。为此,我有这个代码:
URL url = new URL("http://192.168.0.53/api/HZ3bJqN3MIb35uNcI4FfsGcqstwbW6qgvuxd7Tmt/lights/1/");
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
connection.setRequestMethod("PUT");
connection.setDoOutput(true);
connection.setDoInput(true);
connection.setConnectTimeout(60000);
connection.setReadTimeout(60000);
connection.setRequestProperty("Content-Type", "application/json");
JSONObject requestBody = new JSONObject();
requestBody.put("on", false);
OutputStreamWriter writer = new OutputStreamWriter(connection.getOutputStream());
writer.write(requestBody.toString());
writer.flush();
writer.close();
// Debug
int response = connection.getResponseCode();
System.out.println(requestBody.toString());
System.out.println(response);
这个 returns '200' 和 {"on":false} 这将是完美的。 但出于某种原因,它什么也不做。即使连接存在,灯仍然亮着。
知道为什么吗?
我正在尝试做同样的事情,但不知道 Java 部分。
我让 curl 在命令级别使用三引号工作:
curl -X PUT -H "Content-Type: application/json" -d {"""on""":false} http://192.168.0.53/api/HZ3bJqN3MIb35uNcI4FfsGcqstwbW6qgvuxd7Tmt/lights/1/state
此代码适用于您的 hue 灯,请在使用后与我分享 Java 代码。麦克@toggle.is
您对 PUT 请求使用了错误的 URL。
对 http://192.168.0.53/api/.../lights/1
的 GET 请求将 return 当前状态
但要修改您需要向 http://192.168.0.53/api/.../lights/1/state