I have a React application from which I am trying to authorize with Auth0.
I am calling an endpoint:
const response = await fetch(
`https://dev-pj8gyd-x.us.auth0.com/authorize?` +
`audience=${audience}&` +
`scope=${scope}&` +
`response_type=${responseType}&` +
`client_id=${clientId}&` +
`redirect_uri=${redirectUri}`,
{
redirect: "manual",
}
);
From http://localhost:3000 and getting a CORS 302 error
My Auth0 app dashboard:
Authorization url: