Alows multiple callback urls

I want to allow all possible urls behind a specific domain name, for example
http://localhost:8000/* and I added http://localhost:8000/* this url in callback urls Auth0 but on my code, when I put,

.login(
           {
             username: "test@test.io",
             password: "xyz@#@2111",
             realm: "Username-Password-Authentication",
             responseType: "id_token",
             redirectUri: "http://localhost:8000/users/details",
           },
)

i have errors “The provided redirect_uri is not in the list of allowed callback URLs.”

Hey there @niaina welcome to the community!

Unfortunately, Auth0 only allows for subdomain wildcards - Please see the following:

Cheers!

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.