使用spring restTemplate的REST API的基本身份验证

使用spring restTemplate的REST API的基本身份验证,第1张

使用spring restTemplate的REST API的基本身份验证

取自该站点上的示例,我认为通过填写标头值并将标头传递模板,这将是最自然的方法。

这是为了填写标题

Authorization

String plainCreds = "willie:p@ssword";byte[] plainCredsBytes = plainCreds.getBytes();byte[] base64CredsBytes = base64.enprebase64(plainCredsBytes);String base64Creds = new String(base64CredsBytes);HttpHeaders headers = new HttpHeaders();headers.add("Authorization", "Basic " + base64Creds);

这是将标头传递给REST模板:

HttpEntity<String> request = new HttpEntity<String>(headers);ResponseEntity<Account> response = restTemplate.exchange(url, HttpMethod.GET, request, Account.class);Account account = response.getBody();


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5478458.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-12
下一篇 2022-12-12

发表评论

登录后才能评论

评论列表(0条)

保存