Skip to content

Bug in public updateToken #21

Description

@ticxx

Hello,

updateToken throw always an error ,
due to a typo in keycloak.core.service.js line 68

'Basic ' + btoa(this.clientId + ': ' + this.clientSecret)

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions