Spring OAuth2刷新令牌将再次对用户进行身份验证

时间:2019-03-13 11:51:33

标签: angular oauth-2.0 jwt angular5 spring-security-oauth2

我正在通过刷新令牌向服务器发送请求以获取新的访问令牌,但是有要进行身份验证的呼叫,并且我认为由于用户已通过身份验证,因此它没有进行身份验证。我只需要使用刷新令牌即可获得新的访问令牌

请求如下:

private authorization = btoa("Client-Id:Client-secret");
  private headers = new Headers({"Authorization": "Basic " + this.authorization,
                "Content-type": "application/x-www-form-urlencoded"});

const body = "grant_type=refresh_token&refresh_token="+ refresh_token; 

将其发送到“ oauth /令牌”映射。

用户不应进行身份验证的解决方案。

谢谢。

0 个答案:

没有答案