57585960616263
while ((line = br.readLine()) != null) { sb.append(line); } String post = sb.toString(); return new RequestBody((Map<String,Object>) StringUtilities.fromJson(post, Map.class)); }
58596061626364
58596061626364656667
sb.append(line); } String post = sb.toString(); try { return new RequestBody((Map<String, Object>) StringUtilities.fromJson(post, Map.class)); } catch (Exception e) { throw new RuntimeException(e); } }