Hello,
I’m new to Auth0 but it seems I succeeded setup an account and a “Regular Application”.
What have I done:
- Created a tenant
- Downloaded the Spring Boot Sample Application
- Extracted it to my Eclipse IDE
- Added redirect-uri to application.yml because without that information an error page appears
- Setup SSL in the application because http is not allowed as callback uris in the management interface
- Added this redirect-uri to “allowed callback uris” in the manage interface
- Created a dummy user
- Setup 2FA with Auth0 Guardian App
When I start the spring application everything seems fine
- I connect to https://localhost:3000 then I click to “login” button.
- Login Page from my tenant on auth0.com appears
- I login with the credentials of my dummy user
- QRCode for 2FA appears → Scanning it to guardian app
- Push Notification appears in Guardian App
- Clicking on “Allow”
- Redirecting Back to application but when I set a debug point on HomeController the parameter “principal” is null everytime
For me it seems the application isn’t getting the userinfo.
In the index.html the “profile” and “logout” button keeps hidden, because “isAuthenticated” seems to be false.
Any help would be appreciated.
Best regards
Ben