No 'groups' scope in the console for the default Authorisation Server

Hi @RobOfTodosSantos

Make sure your Claims Filter is correct as ‘Matches regex’ is not the default option.

Make sure you have created some Groups (e.g., User and Administrator), assigned the Groups to your Application and added some Users to your Groups.

Make sure you have included the ‘groups’ scope:

  oidc: {
    clientId: '<CLIENT_ID>',
    issuer: '<ISSUER_ID>',
    redirectUri: 'http://localhost:4200/implicit/callback',
    scope: 'openid profile email phone address groups',
    testing: {
      disableHttpsCheck: true
    }
  }

Take a look at some working sample code:

Also see this post.

Cheers
Rob