Retrieveing User Profile Information

Hi @ibuoprofen,

Welcome and thank you for posting in Auth0 Community!

Do you have the scope: 'openid profile email' under your src/environments/environment.ts file?

It should look something like this:

// environment.ts
export const environment = {
  production: false,
  auth: {
    clientID: 'YOUR-AUTH0-CLIENT-ID',
    domain: 'YOUR-AUTH0-DOMAIN', // e.g., https://you.auth0.com/
    audience: 'YOUR-AUTH0-API-IDENTIFIER', // e.g., http://localhost:3001
    redirect: 'http://localhost:4200/callback',
    scope: 'openid profile email'
  }
};