I feel frustrated with your support service. I have created a ticket and nobody has answered, I also called at the phone numbers on the home page. My subscription includes support. Could anyone please help me, the ticket number is: #00456537.
If you use the Auth0 APIs, such as the Management API, the API identifier will use your default tenant domain name (such as https://YOUR_TENANT.auth0.com/userinfo and https://YOUR_TENANT.auth0.com/api/v2/ ).
Being said that, when you specify the audience to get /userinfo (when you make this call you are calling our Authentication API) you must pass your tenant url and not the custom domain, otherwise this will not work as our API does not identify your custom domain as existent.
This should solve your issue, it seems everything else looks fine on your code.
I updated my code. When I hit the login button the following is returned:
{error: âinvalid_tokenâ, errorDescription: âIssuer (iss) claim mismatch in the ID token, expecâŚâlogin.gdtr.bizâ, found âhttps://login.gdtr.biz/ââ}
hmmmm, I wonder if itâs something about the Issuer configuration that is missing
I found in here Configure Features to Use Custom Domains that you should validate the JWT issuer(s) against your custom domain
I updated my code and now I was able to set up my custom domain using the embedded login flow. However, when disabling third party cookies Iâm getting this error {error: âaccess_deniedâ, errorDescription: âUnknown or invalid login ticket.â, state: âSbGMg-h7K0Ix7gbPJFh-p7NAzTVNqXzZâ}. The reason why we paid for a custom domain was to convert third-party cookies into first-party cookies. Am I missing any configuration step?