您好,登錄后才能下訂單哦!
這篇文章主要介紹如何實現Spring-boot oauth2使用RestTemplate進行后臺自動登錄,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
內容不限于登錄業務,主要簡單介紹RestTemplate的用法,包括
登錄流程
主要代碼
// 構造 post的body內容(要post的內容,按需定義) MultiValueMap<String, String> paramsMap = new LinkedMultiValueMap<>(); paramsMap.set("grant_type", "password"); paramsMap.set("username", "yourname"); paramsMap.set("password", "yourpassword"); // 構造頭部信息(若有需要) HttpHeaders headers = new HttpHeaders(); headers.add("Authorization", "Basic xxxxxx你的認證密鑰"); // 設置類型 "application/json;charset=UTF-8" headers.setContentType(MediaType.APPLICATION_JSON); // 構造請求的實體。包含body和headers的內容 HttpEntity<MultiValueMap<String, String>> request = new HttpEntity(paramsMap, headers); // 聲明 restTemplateAuth(用作請求) RestTemplate restTemplateAuth = new RestTemplate(); // 進行請求,并返回數據 String authInfo = restTemplateAuth.postForObject("http://localhost:8089/oauth/token", request, String.class);
使用josn請求的示例代碼
Posting JSON with postForObject JSONObject personJsonObject = new JSONObject(); personJsonObject.put("id", 1); personJsonObject.put("name", "John"); HttpEntity<String> request = new HttpEntity<String>(personJsonObject.toString(), headers); String personResultAsJsonStr = restTemplate.postForObject("url", request, String.class);
以上是如何實現Spring-boot oauth2使用RestTemplate進行后臺自動登錄的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。