我目前正在编写一个按需发出JWT令牌的应用程序。 发出令牌时,应将用户重定向到网页。这就像一个魅力 - 但我需要为该重定向设置一个授权标题。
用户在网页A上输入他的凭据。网页A向服务器B发送POST请求。服务器B检查凭证并提供令牌。现在应该将用户重定向到网页C.
我尝试了以下内容:
@RequestMapping(value = "/token", method = RequestMethod.POST, produces = "application/json", consumes = MediaType.APPLICATION_FORM_URLENCODED_VALUE)
public ResponseEntity<Object> token(
@RequestParam("user") String _username,
@RequestParam("secret") String _secret
) throws Exception
{
headers.setContentType(MediaType.APPLICATION_FORM_URLENCODED);
MultiValueMap<String, String> map = new LinkedMultiValueMap<String, String>();
map.add("user", _username);
map.add("secret", _secret);
HttpEntity<MultiValueMap<String, String>> entity = new HttpEntity<MultiValueMap<String, String>>(map, headers);
HttpStatus statusCode = HttpStatus.FOUND;
HttpHeaders httpHeaders = new HttpHeaders();
try {
ResponseEntity<String> request = restTemplate.exchange(_url, HttpMethod.POST, entity, String.class);
} catch (Exception ex) {
ex.printStackTrance();
}
String response = request.getBody();
JSONObject _tokenObject = new JSONObject(response);
String _token = _tokenObject.getString("access_token");
httpHeaders.add("Authorization", "Bearer: " + _token);
URI _redirectUri = new URI("http://foo.example.com/webpageC");
httpHeaders.setLocation(_redirectUri);
return new ResponseEntity<>(httpHeaders, HttpStatus.FOUND);
}
重定向有效,但在重定向发生之前,只有/token
获取授权标头作为响应标头。
如何实现标题发送到网页C?
感谢。
更新
无法使用forward:
,因为网页C位于另一个网址而不是同一个控制器中。
任何人都有一个想法如何解决?
答案 0 :(得分:0)
通常,我们让前端开发人员处理重定向。如果你在后端工作,你可以提供一个宁静的 API 来发布 JwtTokens。前端会担心如何在以下重定向的 Http 请求中携带 Authorization 标头。这是一个使用 mobile
和 password
来交换 JwtToken 的简单登录控制器。
@RequestMapping(value = "/login", method = RequestMethod.POST)
public Result login(@RequestBody Map<String, String> loginMap) {
User user = userService.findByMobile(mobile);
if(user == null || !user.getPassword().equals(password)) {
return new Result(ResultCode.MOBILEORPASSWORDERROR);
}else {
String token = jwtUtils.createJwt(user.getId(), user.getUsername(), map);
return new Result(ResultCode.SUCCESS,token);
}
}
如果您作为后端,无论如何都希望处理重定向,请将请求重定向到以令牌为参数的网页,在这种情况下:
GET http://www.example.com/login/success?token=xxx&redirectUrl=%2Fxxx
相关的后端代码为:
protected String determineTargetUrl(HttpServletRequest request, HttpServletResponse response, Authentication authentication) {
Optional<String> redirectUri = CookieUtils.getCookie(request, REDIRECT_URI_PARAM_COOKIE_NAME)
.map(Cookie::getValue);
if(redirectUri.isPresent() && !isAuthorizedRedirectUri(redirectUri.get())) {
throw new BadRequestException();
}
String targetUrl = redirectUri.orElse(getDefaultTargetUrl());
String token = tokenProvider.createToken(authentication);
return UriComponentsBuilder.fromUriString(targetUrl)
.queryParam("token", token)
.build().toUriString();
}
同样,让前端将令牌放入进一步的请求中作为授权标头。
请记住,您正在返回一个响应,因此您可以设置响应标头。您无需为前端设置下一个请求的请求标头。
参考: https://www.callicoder.com/spring-boot-security-oauth2-social-login-part-2/