Error in example code (httpInterceptor configuraiton)

Problem statement

We are reporting that the HttpInterceptor example code does not work properly here:

Solution

The problem was that the token was not attached to the request. It has resolved the issue by changing the following part in the quickstart in charge of calling the API:

The code that was used to do the request instead of what we have documented, is the following:

pullConfig(): void {
this.config = null;
this.httpClient.get(`${environment.apiUrl}/config`).subscribe(res => {
this.config = res;
console.log('config inside the profile.component.ts: ', res);
});
}