You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
headers.append('Authorization', 'Basic ' + btoa(_this.clientId + ': ' + _this.clientSecret));
should be (no space after the colon) headers.append('Authorization', 'Basic ' + btoa(_this.clientId + ':' + _this.clientSecret));
regards, ticxx
The text was updated successfully, but these errors were encountered:
ticxx
changed the title
Bug in Keycloak.prototype.updateToken
Bug in public updateTokenSep 20, 2017
ticxx
changed the title
Bug in public updateToken
Bug in public updateToken
Sep 20, 2017
Hello,
updateToken throw always an error ,
due to a typo in keycloak.core.service.js line 68
angular2-keycloak/src/services/keycloak.core.service.ts
Line 138 in 4185e47
headers.append('Authorization', 'Basic ' + btoa(_this.clientId + ': ' + _this.clientSecret));
should be (no space after the colon)
headers.append('Authorization', 'Basic ' + btoa(_this.clientId + ':' + _this.clientSecret));
regards, ticxx
The text was updated successfully, but these errors were encountered: