(Object body )
| 183 | return result; |
| 184 | } |
| 185 | public Response Post(Object body ){ |
| 186 | try{ |
| 187 | Response result = Connect("POST",body,IsHttps); |
| 188 | return result; |
| 189 | }catch (Exception e){ |
| 190 | return new Response(0,"",null); |
| 191 | } |
| 192 | |
| 193 | } |
| 194 | public void SetHeaders(LinkedHashMap<String,String> header){ |
| 195 | headers = header; |
| 196 | } |
no test coverage detected