Sign in With Apple - Access Token

I found some answer few days back and it worked. Totally conceptual response provided

For code:
in Swift file use this method:
Auth0
.authentication()
.login(appleAuthorizationCode: authCode, fullName: appleIDCredential.fullName, scope: “openid profile email”, audience: “YOUR AUDIENCE URL”).start { result in
switch(result) {}})

It will 100% work

1 Like