����JSON��ʽ����POST���� @param url ����·�� @param params JSON��ʽ������� @return HTTP��Ӧ���� @throws IOException �����쳣ʱ�׳����ɵ����ߴ���
(String url, String params)
| 93 | * @throws IOException �����쳣ʱ�׳����ɵ����ߴ��� |
| 94 | */ |
| 95 | public static Response post(String url, String params) throws IOException { |
| 96 | return doPostRequest(url, null, params); |
| 97 | } |
| 98 | |
| 99 | /** |
| 100 | * ����JSON��ʽ����POST���� |
nothing calls this directly
no test coverage detected