Open
Description
Hi everybody!
I use password flow for OAuth2.
I've configured with useHttpBasicAuthForPasswordFlow: true
, it works fine with fetchTokenUsingPasswordFlow
.
But when I want to refresh the token, stop as it does not work
this.oauthService.events.subscribe (e => {
console.log ('oauth / oidc event', e);
if (e.type == 'token_expires') this.oauthService.refreshToken (). then (value => console.log (value));
};
I checked the Http Request Header, which does not have the Authorization header with Basic.
Please help me. Thank you very much!