(String requestUrl, String accessToken, String params)
| 19 | * |
| 20 | * */ |
| 21 | public static String post(String requestUrl, String accessToken, String params) |
| 22 | throws Exception |
| 23 | { |
| 24 | //����contentType |
| 25 | String contentType = "application/x-www-form-urlencoded"; |
| 26 | return HttpUtil.post(requestUrl, accessToken, contentType, params); |
| 27 | } |
| 28 | |
| 29 | |
| 30 |
no test coverage detected