Executes the specified POST request. @param payload payload @param type media type @param request path @return string result @throws IOException I/O exception
(final String payload, final MediaType type, final String request)
| 145 | * @throws IOException I/O exception |
| 146 | */ |
| 147 | protected static String post(final String payload, final MediaType type, final String request) |
| 148 | throws IOException { |
| 149 | return post(200, payload, type, request); |
| 150 | } |
| 151 | |
| 152 | /** |
| 153 | * Executes the specified POST request. |