Reputation: 127
I'm trying to use Auth0 in angular app, but when I set the configuration in [https://manage.auth0.com/dashboard/] I got this error when click on save changes button
Error!Payload validation error: 'Object didn't pass validation for format absolute-https-uri-or-empty: https://localhost:4200/en/signin' on property initiate_login_uri (Initiate login uri, must be https).
How to solve this error?
Upvotes: 7
Views: 3831
Reputation: 3248
Application login URI
can stay empty in the auth0 config page.
Just make sure you are copying the secrets properly.
In my case, I pasted the auth0_CLIENT secret into auth0_secret...
Upvotes: 0
Reputation: 1
Change your Login URI to //https://127.0.0.1:4200
Note: it requires https://
not http://
Upvotes: 0
Reputation: 61
change your Application Login URI localhost
to 127.0.0.1
so your URI will look like that https://127.0.0.1:4200/en/signin
source: Application Login URI field
Upvotes: 6