I am sending request to server for getting new access token by using refresh token but there is call going to authenticate and I think it shout not authenticate as user is already authenticated. I just need a new access token by using refresh token
Request is as follow:
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;
Sending it to the "oauth/token" mapping.
What is the solution that user should not go to authenticate.
Thanks.