当有参数要发布时,我们会做类似的事情
JSONObject postParams = new JSONObject("{ \"ccc\": \"20000\", \"abc\": \"21000\""}
");
DataOutputStream wr = new DataOutputStream(conn.getOutputStream());
wr.writeBytes(postParams.toString());
wr.flush();
wr.close();
int responseCode = conn.getResponseCode();
System.out.println("\nSending 'POST' request to URL : " + url);
System.out.println("Post parameters : " + postParams);
System.out.println("Response Code : " + responseCode);
如果没有任何参数怎么办,我试着做
JSONObject postParams = new JSONObject("{}");
它失败了。但唯一 ID 包含在链接中
https://domain.com/ut/game/game/trade/ {UNIQUE ID HERE} /bid
我相信有些东西我错过了。