登录成功后,aws-amplify不保留会话

时间:2019-09-29 16:46:07

标签: reactjs typescript webpack amazon-cognito aws-amplify

我正在开发aws-serverless + react应用程序。我的问题是使用aws-amplify进行身份验证。身份验证可以正常进行,但不会保留会话。

登录:

 await Auth.signIn(this.state.email, this.state.password)
            .then(x => {
                console.log(JSON.stringify(x))
            })
            .catch(e => alert(e.message));

响应:

{
    "username": "xxxxx",
    "pool": {
        "userPoolId": "eu-central-1_xxxxx",
        "clientId": "xxxxx",
        "client": {
            "endpoint": "https://cognito-idp.eu-central-1.amazonaws.com/",
            "userAgent": "aws-amplify/0.1.x js"
        },
        "advancedSecurityDataCollectionFlag": true,
        "storage": {
            "loglevel:webpack-dev-server": "INFO"
        }
    },
    "Session": "xxxxx",
    "client": {
        "endpoint": "https://cognito-idp.eu-central-1.amazonaws.com/",
        "userAgent": "aws-amplify/0.1.x js"
    },
    "signInUserSession": null,
    "authenticationFlowType": "USER_SRP_AUTH",
    "storage": {
        "loglevel:webpack-dev-server": "INFO"
    },
    "keyPrefix": "CognitoIdentityServiceProvider.xxxxx",
    "userDataKey": "CognitoIdentityServiceProvider.xxxxx.xx@x.pl.userData",
    "challengeName": "NEW_PASSWORD_REQUIRED",
    "challengeParam": {
        "userAttributes": {
            "email_verified": "true",
            "phone_number_verified": "true",
            "phone_number": "xxxxx",
            "email": "xx@x.pl"
        },
        "requiredAttributes": []
    }
}

之后,我要等待几秒钟。并尝试获取会话数据:

        try {
            await Auth.currentSession();
        }
        catch (e) {
            alert(e);
        }

这给了我错误No current user

我正在使用react + typescript + webpack,现在已经猛击了2天。

1 个答案:

答案 0 :(得分:4)

我今天刚遇到这个问题。我已经通过AWS控制台在(新)用户池中创建了一个新用户,但是登录后,该会话未持久化(每次刷新页面时,Auth.currentSession()都会引发错误,指示没有经过身份验证的用户或类似的东西。)

大约一个小时后,我找到了解决方法...

当用户需要更新密码(您可以在challengeName字段的值中看到该密码)时,Amplify似乎不会保留该会话。

您应该做的是让用户知道challengeNameNEW_PASSWORD_REQUIRED时需要更新密码。

要更新我使用的密码

await Auth.completeNewPassword(user, newPassword, {});

user来自

const user = await Auth.signIn(email, password);

执行完此操作后,会话将保持不变。