投稿するパラメータがある場合、次のようにします
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/ {ここに固有の ID} /bid
私が見逃したものがあると信じています。