Hello, I got the issue setting up a verification email to resend to my users. My application is a SPA, and I am using React as the programming language. I continuously get the error: {“statusCode”:401,“error”:“Unauthorized”,“message”:“Missing authentication”}.
I used this way to get my access token for this API call:
const token = await getAccessTokenSilently({
audience: ‘https://tenant-name.us.auth0.com/api/v2/’,
scope: ‘update:users’
});
Any help is appreciated!