мой auth.service
import {apiEndpoint, authConfig} from '../../../environments/environment'
@Injectable({
providedIn: 'root'
})
export class AuthService {
auth0Client$ = (from(
createAuth0Client({
domain: authConfig.domain,
client_id: authConfig.clientId,
redirect_uri: `${window.location.origin}/client`,
scope: 'openid'
})
) as Observable<Auth0Client>).pipe(
shareReplay(1), // Every subscription receives the same shared value
catchError(err => throwError(err))
);
...
Я следовал этому учебнику Я хотел бы получить полный идентификатор токена, но я получил только токен доступа (я думаю)