static HttpAdviceResponse |
HttpAdvice.delete(String label,
HttpClient httpClient,
String url,
Map<String,String> headers,
String content) |
|
static HttpAdviceResponse |
HttpAdvice.get(String label,
HttpClient httpClient,
String url,
Map<String,String> headers,
Map<String,Object> parameters) |
GET请求
|
static HttpAdviceResponse |
HttpAdvice.post(String label,
HttpClient httpClient,
String url,
Map<String,String> headers,
String content) |
|
static HttpAdviceResponse |
HttpAdvice.put(String label,
HttpClient httpClient,
String url,
Map<String,String> headers,
String content) |
|
static HttpAdviceResponse |
HttpAdvice.request(String label,
HttpClient httpClient,
String httpMethod,
String url,
Map<String,String> headers,
Map<String,Object> parameters,
String content) |
通用请求
|
static HttpAdviceResponse |
HttpAdvice.sendFormUrlencoded(String label,
HttpClient httpClient,
String httpMethod,
String url,
Map<String,String> headers,
Map<String,Object> parameters,
Map<String,String> form) |
发送x-www-form-urlencoded格式请求
|
static HttpAdviceResponse |
HttpAdvice.sendJson(String label,
HttpClient httpClient,
String httpMethod,
String url,
Map<String,String> headers,
Map<String,Object> parameters,
String json) |
发送json请求
|
static HttpAdviceResponse |
HttpAdvice.sendXml(String label,
HttpClient httpClient,
String httpMethod,
String url,
Map<String,String> headers,
Map<String,Object> parameters,
String xml) |
发送xml请求
|