Hello,
I’m currently in the process of integrating Auth0 into our product, which utilizes Laravel and Vue.js. However, I’ve encountered an issue following the login attempt, where the page displays an error indicating a mismatch in the redirect URI. Despite my careful configuration, this problem persists.
I’ve successfully integrated Auth0 with a Vue.js and Node.js project in the past, where everything worked smoothly. Unfortunately, I’m uncertain about what might be causing the current issue.
Here’s the code snippet I’m using:
app.use(
createAuth0({
domain: “MYDOMAIN”,
clientId: “4o8o8c8I9XgIs81*********”,
authorizationParams: {
redirect_uri: “http://localhost:8000/login”,
audience: “AUDIENCE”,
}
})
);
Additionally, I’ve noticed that the callback URL in the provided link doesn’t align with my configuration.