Apple Authentication Auth0.js

Any good documentation on this. Can’t find anything and this article for testing says there is a save button which doesn’t exist:

Also when I use this:

  const auth0Client = new auth0.WebAuth({
    domain: config.domain,
    clientID: config.clientId,
    redirectUri: `${window.location.origin}/callback`,
    responseType: 'token id_token',
    scope: 'openid profile email',
  })

with this:

  const signUpApple = async () => {
    auth0Client.authorize({
      connection: 'apple'
    });
  }

I get this from appleScreen Shot 2020-10-15 at 2.45.29 PM

I am not sure what I need to change

Ok so for anyone this helps I didn’t realize I needed to change the links on the apple side of things. I didn’t have access and had to get someone else to do it.

BUT I still get nothing back? How in the heck do I get apple to work. What are the steps, is there sample code, etc. There is literally NO documentation on this and I have searched for hours.