领域身份验证抛出 [AppError:网络请求失败] - React Native

问题描述 投票:0回答:0
async function logInUser() {
    try {
      await app.logIn(Realm.Credentials.anonymous());
    } catch (e) {
      console.log(e);
    }
  }

我与领域连接并做出本机反应,但是当我尝试进行身份验证时,它会抛出 [AppError:网络请求失败]

react-native authentication realm
© www.soinside.com 2019 - 2024. All rights reserved.