Hi @mclark.properties ,
Welcome to the Auth0 Community Forum!
This sounds like a misconfiguration of your tenants, like there is some unintended cross-over between the two. Can you take a look at this topic and see if it provides any insight?
I’m trying to deploy my application in two locations with two different APIs. For some reason, auth0 doesn’t like when I pull values from my appsettings.json. This only appears to be an issue when the audience is https.
// appsettings.json
{
...
"Auth": {
"Authority": "https://authority.auth0.com/",
"Audience": "https://my.audience.net"
}
}
}
It works if I ignore hardcode the URLs in my Startup.cs…
services
.AddAuthentication(options =>
{
options.Def…
Hope this helps!
Thanks,
Dan