I am building a React Native app. I have the following Callback working:
com.company.productname://dev---1234qa.us.auth0.com/android/com.company.productname/callback
Now I want to add a callback that matches one of several variants of iOS and Android apps. The flavor builds on the existing bundle id: com.company.productname.ext
where .ext is a region (e.g. ‘.us’ or ‘.eu’).
I would expect that I could do the following for the callback:
com.company.productname.ext://dev---1234qa.us.auth0.com/android/com.company.productname.ext/callback
and add this to the Allowed Callback URLs. But when I do, I get the dreaded Callback URL mismatch error.
What am I doing wrong?