(Drive drive, String url, String param)
| 58 | } |
| 59 | |
| 60 | private String post(Drive drive, String url, String param) { |
| 61 | return post(drive, url, param, true); |
| 62 | } |
| 63 | |
| 64 | private String post(Drive drive, String url, String param, boolean retry) { |
| 65 | String response = OkHttp.post(url, param, drive.getHeader()).getBody(); |