How to set Auth0 configuration for angular app?

3k Views Asked by At

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?

2

There are 2 best solutions below

0
Ahmed Abdulrahman On

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

0
Samuel Blebo On

Change your Login URI to //https://127.0.0.1:4200

Note: it requires https:// not http://

source