Unable to issue redirect for OAuth 2.0 transaction - login

Ok I figured it out. When configuring the auth0 client, you need to explicitly specify the redirect uri now. This wasn’t required in older versions. I’m not sure when they changed this. I just updated my client today to the newest version, which is why it broke for me.

 AuthModule.forRoot({
      ...
      authorizationParams: {
        redirect_uri: environment.redirectUri
      },
})
1 Like