ResponseEntity<Map> responseEntity = null;
try {
Map<String, String> body = new HashMap<>();
body.put("username", USER_NAME);
body.put("password", PASSWORD);
RestTemplate template = new RestTemplate();
RequestEntity<Map> requestEntity = RequestEntity
.post(new URI(LOGIN_URL))
.header("Content-Type", "application/json")
.header("Accept", "application/json")
.header("cache-control", "no-cache")
.accept(MediaType.APPLICATION_JSON)
.body(body);
responseEntity = template.exchange(requestEntity, Map.class);
} catch (Exception e) {
}
int codeValue = responseEntity.getStatusCodeValue();
if (codeValue == 200) {
TOKEN = responseEntity.getBody().get("token").toString();
}
return TOKEN;
複製程式碼
java post 請求
相關文章
- Java 監聽POST請求Java
- Java傳送Post請求Java
- Java Http Get Post 請求工具類JavaHTTP
- java傳送GET和post請求Java
- post 請求工具類
- SpringMVC中如何傳送GET請求、POST請求、PUT請求、DELETE請求。SpringMVCdelete
- requests 模組 - post 請求
- Postman傳送Post請求Postman
- vue 發起get請求和post請求Vue
- get請求和post請求的區別
- SpringCloud OpenFeign Post請求的坑SpringGCCloud
- uniapp之post請求如何用APP
- POST與GET請求區別
- POST發起下載請求
- python傳送HTTP POST請求PythonHTTP
- post請求帶來的option
- axios的post請求爬坑iOS
- ajax中POST請求與引數(請求體)設定
- uni-app的POST請求和GET請求APP
- vue2.0 axios post請求傳參問題(ajax請求)VueiOS
- go對get、post請求封裝Go封裝
- get,post URL加字尾請求
- axios 發get,post 請求小結iOS
- get與post的請求區別
- linux用curl傳送post請求Linux
- python介面測試—post請求(二)Python
- Python中get、post請求詳解(HTTP請求頭、狀態碼)PythonHTTP
- 如何在Camel中Post一個請求?
- 使用Postman傳送POST請求的指南Postman
- 以Raw的方式傳送POST請求
- file_get_contents傳送post請求
- go的gin框架使用(五):post請求Go框架
- Post請求域名Nginx返回405報錯Nginx
- 介面請求(get、post、head等)詳解
- 介面請求 (get、post、head 等) 詳解
- C#模擬HTTP請求Post JSONC#HTTPJSON
- 如何使用post請求下載檔案
- httprequest- post- get -傳送請求HTTP