Hey, I am trying to integrate apple and google login.
I am using the /authorize endpoint from the Authentication API (Authentication API Explorer)
So I have built an API that makes a GET request to the /authorize endpoint, and redirects to the url in the response.
With google, it automatically fails with the following:
WIth apple, it allows me to login and then fails with the following:
My request looks like this:
https://{myAuth0AppDomain}.us.auth0.com/authorize?response_type=token&client_id={myAuth0AppClientId}&connection=apple&redirect_uri=http://localhost:4000/callback
And the callback url is added to the allowed callbacks on the app dashboard
Testing apple/google through the dashboard Authentication Profile works for google, but gives the exact same error for apple.