Ios react本机apple身份验证不返回电子邮件也不返回全名

Ios react本机apple身份验证不返回电子邮件也不返回全名,ios,react-native,Ios,React Native,我正在尝试在我的ReactNative应用程序中实现Apple SignIn,我添加了react native Apple authentication(),然后安装了POD,然后在Xcode中添加了Apple SignIn功能 按下按钮并尝试使用我的Apple帐户登录后,返回以下对象: { authorizationCode: null authorizedScopes: Array(0) length: 0 __proto__: Array(0) email: null

我正在尝试在我的ReactNative应用程序中实现Apple SignIn,我添加了react native Apple authentication(),然后安装了POD,然后在Xcode中添加了Apple SignIn功能

按下按钮并尝试使用我的Apple帐户登录后,返回以下对象:

{
  authorizationCode: null
  authorizedScopes: Array(0)
  length: 0
  __proto__: Array(0)
  email: null
  fullName: null
  identityToken: null
  realUserStatus: 1
  state: null
  user: "receivedMyTokenHere"
}
但我需要全名和电子邮件,不知道如何获取它们。 在库中,AppleAuthentication.requestAsync方法需要全名和电子邮件作用域,但由于某些原因,我没有收到它们。有什么想法吗