在React Native中FB登录后,AWS Amplify currentAuthenticatedUser为null,但是当重新加载app时,currentAuthenticatedUser返回有效用户

问题描述 投票:0回答:1

我正在尝试将Facebook登录集成到我的React Native应用程序中。

我已经能够成功实现Auth.signIn()方法,并且我可以使用Auth.currentAuthenticatedUser()一致地检索用户。

但是,当我从Facebook登录获取代码后使用Auth.currentAuthenticatedUser()时,它返回null。

更重要的是,当我重新加载应用程序时,Auth.currentAuthenticatedUser()按预期返回用户。

我不明白为什么在我用令牌创建用户会话后,它无法识别我有一个经过身份验证的用户。

这是我的代码:

getTokenbyCode = async (code) => {
      const details = {
        grant_type: 'authorization_code',
        code,
        client_id: userPool.clientId,
        redirect_uri: AuthSession.getRedirectUrl()
      }
      const formBody = Object.keys(details)
        .map(
          key => `${encodeURIComponent(key)}=${encodeURIComponent(details[key])}`
        )
        .join("&");

      await fetch(
        tokenURL,
        {
          method: "POST",
          headers: {
            'Content-type': 'application/x-www-form-urlencoded;charset=UTF-8'
          },
          body: formBody
        }
      )
        .then(async (res) => {
          let tokenRequestJson = await res.json();
          const IdToken = new CognitoIdToken({ IdToken: tokenRequestJson.id_token });
          const AccessToken = new CognitoAccessToken({ AccessToken: tokenRequestJson.access_token });
          const RefreshToken = new CognitoRefreshToken({ RefreshToken: tokenRequestJson.refresh_token })
          try {
            let userSession = new CognitoUserSession({ IdToken, AccessToken, RefreshToken });
            const userData = {
              Username: userSession.idToken.payload.email,
              Pool: userPool
            };

            cognitoUser = new CognitoUser(userData);
            cognitoUser.setSignInUserSession(userSession);
            cognitoUser.getSession(async (err, session) => { // You must run this to verify that session (internally)
              if (session.isValid()) {

                // EVERYTHING WORKS UP TO HERE <!---------------->

                let cognitoUser = await Auth.currentAuthenticatedUser()
                this.setState({user: cognitoUser})

                this.props.navigation.navigate('AuthLoading', {user: cognitoUser})
              } else {
                console.log('session is not valid: ', session);
              }
            })
          }
          catch (FBSignInError) {
            console.log('FBSignInError: ', FBSignInError)
          }
        })
        .catch(error => {
          console.log('error: ', error);
        });
    }
react-native amazon-cognito aws-amplify
1个回答
0
投票

我认为这只是蛮力,所以如果有人想告诉我为什么这样做,我会很高兴听到它。

我的猜测是,通过使用Auth模块设置用户会话,它将用户令牌存储在正确的位置,以便Auth.currentAuthenticatedUser可以获取它。

  cognitoUser = new CognitoUser(userData);
  cognitoUser.setSignInUserSession(userSession);
  let authUser = Auth.createCognitoUser(cognitoUser.getUsername())
  authUser.setSignInUserSession(userSession)

创建cognitoUser可能没有必要,但它正在工作,所以我很擅长它。

© www.soinside.com 2019 - 2024. All rights reserved.