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傳送GET和post請求Java
- Java Http Get Post 請求工具類JavaHTTP
- java傳送post請求 ,請求資料放到body裡Java
- iOS 同步請求 非同步請求 GET請求 POST請求iOS非同步
- java傳送http的get、post請求JavaHTTP
- jQueryAjax:$.post請求示例jQuery
- requests 模組 - post 請求
- post 請求工具類
- JAVA中Get和Post請求的區別Java
- SpringMVC中如何傳送GET請求、POST請求、PUT請求、DELETE請求。SpringMVCdelete
- Postman傳送Post請求Postman
- 【轉】怎麼用PHP傳送HTTP請求(POST請求、GET請求)?PHPHTTP
- Android Http請求框架一:Get 和 Post 請求AndroidHTTP框架
- Android okHttp網路請求之Get/Post請求AndroidHTTP
- get請求和post請求的區別
- vue 發起get請求和post請求Vue
- POST與GET請求區別
- POST發起下載請求
- post請求帶來的option
- POST請求登入網頁網頁
- HTTP Get,Post請求詳解HTTP
- C# 傳送POST請求C#
- Get和Post請求詳解
- ajax中POST請求與引數(請求體)設定
- get請求和post請求區別詳解
- uni-app的POST請求和GET請求APP
- axios的post請求爬坑iOS
- get與post的請求區別
- go對get、post請求封裝Go封裝
- get,post URL加字尾請求
- uniapp之post請求如何用APP
- python傳送HTTP POST請求PythonHTTP
- post 封裝Map 傳送請求封裝
- 實用性工具類——Post請求
- PHP傳送POST和GET請求PHP
- 用Fiddler 傳送post請求