React Native AppleId Authentication: email null with "hide my email" option

445 views Asked by At

Environment:

I have following code for AppleId SignIn:

let appleAuthRequestResponse = await appleAuth.performRequest({
  requestedOperation: appleAuth.Operation.LOGIN,
  requestedScopes: [appleAuth.Scope.EMAIL, appleAuth.Scope.FULL_NAME],
})

console.log('Email: ', appleAuthRequestResponse.email) // getting null

Here on the last line I am getting email = null

enter image description here

What is wrong with the Apple Authentication?

Thank you mates in advance!

0

There are 0 answers